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

RavenDB Restore Stuck

We are trying to restore Ravendb from the backup file. We are using Raven studio. The restore process copied index files from the backup to the new location but it's stuck at the below step: Esent Restore: Restore Begin Esent Restore: 18 1001 I…
Mangesh Kulkarni
  • 311
  • 1
  • 5
  • 13
3
votes
1 answer

Add a field to a document in raven 3.5 where the property doesn't exist

In my instance of raven3.5 I have a collection and some documents have an extra property due to a change in the document structure. Now I need to query on that property but many older documents don't have it. How can I patch the collection and add…
Sean Rock
  • 113
  • 9
3
votes
1 answer

How to execute delete and update operations in RavenDB

Just a simple, question reading through the official RavenDB documentation , I understand you are able to execute these operations with the client API functions but you can't with RQL , or is anyway to do it with RQL.
3
votes
2 answers

While creating new document in ravendb, collection name is missing in metadata, and the document is marked under @empty collection

I am trying to create a new collection in ravendb using the apollo node client. Although the document is created and stored in ravendb, the "collection" value from metadata is missing. And as a result the document is stored under @empty collection.…
3
votes
1 answer

RavenDB 4 RC2: Cannot execute command of type PutAutoIndexCommand for database - Can not update auto-index:

I am using a RavenDB 4 RC 2 database. Some of my database auto generated indexes keep 'freezing' and causing errors in my API. Deleting the frozen index provides a short term solution. But even though I am regenerating them, it just a matter of time…
Tom Aalbers
  • 4,574
  • 5
  • 29
  • 51
3
votes
1 answer

Getting an error about WebSocket from RavenDB on IIS/Windows Server 2016

I'm trying to running RavenDB from IIS on Windows Server 2016. I've followed Installation : Running as an IIS application. It's running but gives an error. Error Title: Your server doesn't support the WebSocket protocol! Error Details: EventSource…
csharpbd
  • 3,786
  • 4
  • 23
  • 32
3
votes
2 answers

Restore a RavenDb backup

I'm trying to restore a backup of RavenDb. RavenDb Version: RavenDB-Build-2380 Operating System: Win8 From Documentation. I have tried the following, Raven.Server.exe -src [backup location] -dest [restore location] -restore This is working in…
Praveen
  • 55,303
  • 33
  • 133
  • 164
3
votes
2 answers

RavenDB, only way to store data with embedded db is in 'system database'?

I use an embedded database and wonder whether the only way to operate on data is withing the system database? I took a look in the management studio and saw that all my data is dumped into the system database. Even when I created a new database…
Matt
  • 7,004
  • 11
  • 71
  • 117
3
votes
1 answer

RavenDB - Document references

I am RavenDB noob trying trying to understand how does RavenDB knows to link a document to another? It appears to me that it scans every property of the document and if the proprety value matches a documentId, it shows that a reference in the…
Juma
  • 183
  • 4
3
votes
1 answer

Embedded RavenDB - how to run management studio on a different port

It currently runs on 8080, but I need that port for another service.
Lincoln
  • 749
  • 1
  • 7
  • 13
2
votes
0 answers

RavenDB import from relational database

Is it possible to import data from a relational database to RavenDB using a complex query? This query joins several tables, more than 20 in a very complex way, something that is not achievable using its Migration tool in RavenDB studio. I was…
DanielV
  • 2,076
  • 2
  • 40
  • 61
2
votes
1 answer

i want to insert a json file in RavenDb with python

I am looking for a method, on how can I insert values as JSON format in RavenDB with python. code: cert = {'pfx': '...', 'password': '...'} document_store = document_store.DocumentStore(["link DB"], "name DB", certificate=cert) doc =…
o akka
  • 81
  • 3
2
votes
2 answers

RavenDb add property using RQL

Is there a way to add a property to all documents in a collection using RQL(Patch)? Bulk-Insert is a possible solution, but it's required to write c# code, which is not a fast solution to achieve, specially in a matter that you need to manipulate…
Xaimaran
  • 403
  • 4
  • 17
2
votes
2 answers

Syntax question on reduce part of RavenDB index, average calculation

I am struggling with the correct syntax for an averaging column. What I have - from RavenDB Studio editor: Map: from area in docs.Level5_AdministrativeAreas select new { area.NAME_4, totalPrice = area.pricePerSquareMetre, areaCount =…
Hiro Protagonist
  • 474
  • 3
  • 15
2
votes
1 answer

Add extra column/field to RavenDB collection via RQL in Raven Studio

I'm trying to update the entire collection by adding an extra field to each entity. This doesn't do the trick: from things as t update { put( id(t), "NewField"); } Can someone help out with the syntax please ? Thanks !
Hiro Protagonist
  • 474
  • 3
  • 15