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
16
votes
1 answer

Is it possible to connect to an embedded DB with Raven Management Studio

I'm playing with Raven DB and am wondering if it's possible to connect to an embedded DB with Raven Management Studio. Has anyone ever done this?
Ken Sykora
  • 1,124
  • 13
  • 27
15
votes
1 answer

Running RavenDB as an EmbeddableDocumentStore and accessing RavenDB Management Studio

I'm playing with an embedded RavenDB => RavenDB-Embedded.1.0.499 package installed via NuGet in Visual Studio 2010. It's being used in a current project that I started after reading this excellent MSDN article: Embedding RavenDB into an ASP.NET MVC…
Leniel Maccaferri
  • 100,159
  • 46
  • 371
  • 480
9
votes
1 answer

How to get last write date of a RavenDB document via C#

In the Raven Studio UI, when you look into a document you can read (on the right of the page) the last write date of the document. I don't find any access via the client API in C# to this information. Do you know if it's possible ?
Antoine Blanchet
  • 325
  • 2
  • 17
9
votes
3 answers

RavenDB ID prefix and REST API

I'm currently struggling with something that should be trivial, and maybe it is, but I can't find a decent solution. My problem originates with RavenDB default ID structure. Let's say we use the HiLo algorithm to create a person, we'll get our first…
Matteo Mosca
  • 7,380
  • 4
  • 44
  • 80
9
votes
2 answers

How to restrict access to admin panel in ravendb?

When running Raven.Server.exe by default admin panel is visible at IP:PORT address. How can I restrict access to this panel for specific users only?
Steve Macculan
  • 2,292
  • 5
  • 22
  • 32
6
votes
1 answer

Extract Json property from RavenDB

I want to extract Json property from Raven DB database. I am extracting it from Ravendb studio from index as below. In below query, parameter Body is of type json and I want to extract its one field (let's say field1) from it. How can it be…
Rajaram Shelar
  • 7,537
  • 24
  • 66
  • 107
6
votes
1 answer

Remove field from collection in RavenDB Studio

I am trying to remove a property (whose addition to the documents I asked for help with, see here ), using RavenDB Studio (I accidentally added them to the wrong database collection...). Again, I'm stuck on the syntax. Also - I can't believe nobody…
Hiro Protagonist
  • 474
  • 3
  • 15
5
votes
1 answer

RavenDb: Document Refresh feature does not run at nor after the specified time by @refresh flag

I need to mark documets as expired after some time and therefore I am trying to use @refresh feature to re-run subscription and to compute my 'expired' flag. I know there is 'Document expiration' feature but this one removes data which I don't…
Cabal
  • 53
  • 4
4
votes
1 answer

RavenDB: How to index dictionary keys on a multi-map index?

I've got the below RavenDB MultiMap index that works and returns results. Now when I want to use the query and try to filter data I get the following message: The field 'Stock_Key' is not indexed, cannot query/sort on fields that are not indexed. I…
Tom Aalbers
  • 4,574
  • 5
  • 29
  • 51
4
votes
2 answers

How to query Ravendb document size

I have a scenario in which I need to find the largest documents in my Ravendb database. When I select any given document in Ravendb Studio, the size is displayed in the Properties section as circled in red in this screen shot: Is there a query I…
Shawn de Wet
  • 5,642
  • 6
  • 57
  • 88
4
votes
1 answer

how to query in ravendb studio?

I have no problem querying RavenDB from code, but sometimes a quick lookup directly to RavenDB would be nice. Unfortunately, I cannot figure it out despite tips that it uses Lucene syntax. For example, I have a RegionLocation document: { …
Zulu Z
  • 1,103
  • 5
  • 14
  • 27
4
votes
1 answer

Cannot access RavenDB Management Studio with Embedded Db

I run and initialize an instance using the following code: EmbeddableDocumentStore db = new EmbeddableDocumentStore(); db.DataDirectory = @"C:\RavenDb\"; db.Configuration.HostName = "localhost"; db.Configuration.Port…
Matt
  • 7,004
  • 11
  • 71
  • 117
4
votes
1 answer

Error on trying to configure RavenDB in IIS mode

Following the steps in this tutorial, the first item of "Setting up with IIS 7.5" after clicking on "Modules" in inetmgr, the following error occurs: Full image: https://i.stack.imgur.com/QCM4s.png Web.config in RavenDB
ridermansb
  • 10,779
  • 24
  • 115
  • 226
3
votes
1 answer

Counting a field with a specific value in a map/reduce index

I am new to using map/reduce indexes so my question might be obvious, but I want to count the number of documents where a specific field has a specific value using a map/reduce index. Let's say that I have documents with a field called activated…
3
votes
1 answer

RavenDB embedded with Raven Management Studio?

Is it still possible to use the Raven Management Studio with embedded? I only find 10 year old Questions with guides that use Parameters/options that don't exist anymore.
1
2 3 4 5 6 7 8