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
1
vote
2 answers

How can I remove/edit a document marked Raven-Read-Only?

A document in our RavenDB database was accidentally deleted, and in an attempt to fix the issue a revision was renamed to the primary document and saved, keeping the MetaData. { "Raven-Document-Revision-Status": "Historical", "Raven-Read-Only":…
ashansky
  • 730
  • 2
  • 14
  • 34
1
vote
1 answer

RavenDB query doesn't work from C# but it works in RavenDB Studio?

Actually I want to delete all documents of a kind in a test procedure but I couldn't do that using DocumentStore.DatabaseCommands.DeleteByIndex command , so I tried to see if I could query those entities , Here's my code : var store = new…
Beatles1692
  • 5,214
  • 34
  • 65
1
vote
2 answers

Not Working: Restoring RavenDB from backup

I am using the latest ver of RavenDB 2.750. I have turned off the server before initiating the operation using the following cmd: .\Raven.Server.exe -src "C:\From" -dest "C:\Target" -restore However I do not see any new database added to the list of…
Alwyn
  • 8,079
  • 12
  • 59
  • 107
1
vote
1 answer

How to increase maxUrlLength in RavenDB?

Lets say I want to check if field with very long key exists in my database. So I query it like: var fieldId =…
slavirok
  • 63
  • 4
1
vote
2 answers

Several unique constrains on a single document in RavenDb

Let's say I have a class: public class Person { public string Name{get;set;} public string Email {get;set;} public string GoogleId {get;set;} public string FacebookId {get;set;} } If I want to make the email unique I will use the…
Dennis Nerush
  • 5,473
  • 5
  • 25
  • 33
1
vote
1 answer

Configure RavenDb to run on another port

I'm using the RavenDB-Build-2380 which is running on default port 8080. Hence it is using http://localhost:8080/raven/studio.html#/databases?database=Test How to configure RavenDb to run on another port? I tried changing the following in…
Praveen
  • 55,303
  • 33
  • 133
  • 164
1
vote
1 answer

RavenDB Studio Management Showing 0 Documents

I've just started playing about with RavenDB and I am able to add, delete and query for documents from the database. However when i view the database studio on localhost:8080 it shows the database as having 0 documents. Does anyone have any idea why…
1
vote
1 answer

Is there anything similar to SQL Server Authentication in RavenDb

Being new to RavenDb, I finding many things little tough. I have installed RavenDB-Build-2380 and I am able to use Raven studio but unable to find something similar to SQL Server's SQL Authentication like DataSource Username Password After…
Praveen
  • 55,303
  • 33
  • 133
  • 164
1
vote
1 answer

Ravendb studio authentication

Im running ravendb under shared hosting under IIS. I have set up api key which enables me to call my my ravendb server from code. This all works fine. The problem is i cant seem to figure out how to make this work with the Ravendb studio. As i see…
hippie
  • 649
  • 3
  • 9
  • 18
1
vote
1 answer

Getting IdConvention in RavenDB

Lets say we have a User class public class User { public User() { Created = DateTime.Now; Tags = new List(); } public string FirstName { get; set; } public string LastName { get;…
Oliver Vogel
  • 1,988
  • 1
  • 20
  • 33
1
vote
1 answer

how to reflect changes in the document structure within an existing database?

I have a question regarding RavenDb: Let's say I already store a collection of objects of type Foo and now make a change to the class Foo, let's say, remove a property. How can this change be reflected in the existing database? Or do I need to read…
Matt
  • 7,004
  • 11
  • 71
  • 117
1
vote
1 answer

Is it possible to order results when querying in the RavenDB studio?

Sometimes, I'm just looking at data in the RavenDB studio, usually by index, and I wanted to know if there was a way to specify a sort option? For example, if I have simple index like this: from doc in docs.Pages select new { Query = new[] {…
scottm
  • 27,829
  • 22
  • 107
  • 159
0
votes
1 answer

RavenDB Lets encrypt security mode failed

I am trying to set the IP addresses and ports and i have tried a couple. 127.0.0.1 on port 8080 127.0.0.1 on port 3000 And i try to continue and it gives me a configuration failed error (See Below) Setting up RavenDB in Let's Encrypt security…
0
votes
1 answer

How to query all the databases in Raven db using Raven studio

I have this query which I want to execute on all the databases present in my Raven server from result in results where result.deleted == false select new { result.Name } Currently I can execute this query on single database at a time. So is there…
Dhiraj
  • 613
  • 6
  • 25
0
votes
1 answer

RavdnDb auto index

I Have this models in RavdnDb version 4.0: public class AppUser { public AppUser() { ActiveInApps = new Dictionary(); } public string Id { get; set; } public string PhoneNumber { get; set; } public…