Questions tagged [ravendb-studio]

The RavenDB Management Studio is a lightweight Silverlight client to let you easily manage the data in a RavenDB server instance. Using the Studio you can view, create, edit or delete documents, manage indexes, issue queries, view the errors log, import / export, and more.

The RavenDB Management Studio is a lightweight Silverlight client to let you easily manage the data in a RavenDB server instance. Using the Studio you can view, create, edit or delete documents, manage indexes, issue queries, view the errors log, import / export, and more.

For details, review the Management Studio Documentation.

112 questions
0
votes
2 answers

The installer has encountered an unexpected error installing this package - .Error code 2896

I am currently trying to install ravendb on a prod server. The licens file I am using, is the same being used for another test/prod server. The installation seem to chrash all the time when i pass the license file to the installation. Something i…
nano
  • 75
  • 1
  • 12
0
votes
1 answer

Triggering csv import for RavenDB from the command line

I was wondering if it is possible to integrate the csv import into a powershell/bash script (even if that means doing something with curl or friends). Essentially, what is achieved by the clicks on "Choose file" and "CSV Import" in Ranorex Studio -…
Hiro Protagonist
  • 474
  • 3
  • 15
0
votes
2 answers

Raven DB There is no reduce index named: 97

I have a problem with a Raven db index that suddenly stopped working properly. public class GetStockListForCustomerIndex : AbstractIndexCreationTask { public…
0
votes
1 answer

RavenDb proximity search

I have an entity type: public class Log { public int Id { get; set; } public string Action { get; set; } public string Message { get; set; } } And my Index: public class LogIndex : AbstractIndexCreationTask { public LogIndex() …
Lcng
  • 706
  • 1
  • 8
  • 17
0
votes
2 answers

Can RavenDB create an index for a hyphenated collection name?

I'm trying to create an index from within RavenDB Studio for a collection named employee-tickets but I can't seem to find the correct syntax. Does anyone know the secret? I've tried from t in docs["employee-tickets"] but that just complains with the…
Vinney Kelly
  • 4,975
  • 1
  • 25
  • 31
0
votes
0 answers

RavenDB scripted patch from raven studio not run

I try to run a patch request from Raven Studio on a large collection (over 8000000 documents) and the patch seems doesn't work, I don't see any changes on the documents but if I run it on a single document it works correctly. For a better test I…
0
votes
2 answers

Is it possible to do string-replacements in RavenDB javascript-patches?

Case: when spawning new dev-environments, I would like to go through some collections and change TLD's in certain string-values, so e.g. "bla bla mydomain.com" becomes "bla bla mydomain.localhost". I tried simply in patch-window in Raven…
Frederik Struck-Schøning
  • 12,981
  • 8
  • 59
  • 68
0
votes
1 answer

How do I view an embedded RavenDB database?

RavenDB server comes with a web UI Studio letting to look what's inside. But what's the way to take a look in an embedded RavenDB?
Ivan
  • 63,011
  • 101
  • 250
  • 382
0
votes
1 answer

Accessing data imported into RavenDB via CSV import

I have successfully imported geodata (originally from a shapefile, converted to CSV) into my RavenDB. I am now trying to access the data with a naive, simplistic select (sanity check to see if everything's there) but I can't get any data member…
Hiro Protagonist
  • 474
  • 3
  • 15
0
votes
1 answer

patching a collection to add a field

I'm wanting to patch a RavenDB to add a field to a collection but am just getting errors using the suggested syntax. (I'm probably not understanding what I'm supposed to use) I've tried the following in the patch window but get error: ' "Message":…
Jynn
  • 287
  • 1
  • 3
  • 18
0
votes
1 answer

Raven DB filter on subset of array items and sort on the cheapest of the filter results items

Assuming i have an parent class that I filter on various properties, one of which is a property that is an array of items . Now say that i want to only return the parent item if my array of items as above a min value and below a max value ...that's…
Rawdon Hume
  • 125
  • 2
  • 11
0
votes
1 answer

RavenDb UniqueConstraint doesn't work

I'm using RavenDb Server and Client 3.5.0 and I have tried to get UniqueConstraint work without success. The simple case: using Raven.Client.UniqueConstraints; public class User { public string Id { get; set; } [UniqueConstraint] public…
RenanStr
  • 1,208
  • 1
  • 13
  • 15
0
votes
1 answer

Sitecore Ucommerce - How to access RavenDB Studio

I need to access the data in RavenDB shipped with Ucommerce in Sitecore application. The Ucommerce doc page says you can do it. http://docs.ucommerce.net/ucommerce/v7.1/manage-ucommerce/access-ravendb-studio.html I set the binding for the port…
Pavel Jounda
  • 219
  • 5
  • 14
0
votes
1 answer

How do I change the location for a (single) filesystem in Ravendb?

My task: to move the directory containing the databases and filesystems for a Ravendb-installation from one drive to another (because of disk-space issues) without moving or altering the Ravendb-installation itself. I managed to move the databases…
Frederik Struck-Schøning
  • 12,981
  • 8
  • 59
  • 68
0
votes
1 answer

RavenDb Studio - Document Custom Columns

Is there a way to bind child value of complex object as a column? I mean like this: class A(){ public B AnotherType { get; set; } } class B(){ public string ShowMe { get; set; } } I need to bind AnotherType.ShowMe as a column of A…
Xaimaran
  • 403
  • 4
  • 17