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

How to query in RQL for special characters like $ in the property path expression like $type

In a ravendb-studio I like to use a RQL-query to query for documents where an property $type has some value. I tried something like from EventLogEntries where $type in ("...", "...") But it throws an error, that it can't parse the where clause. Any…
pvill
  • 185
  • 11
1
vote
1 answer

Reset all corrupted indexes of all databases on a RavenDb server by script

I have a RavenDb server with over 200 databases each with 5 - 10 indexes. Recently, the server went very low on disk space, and most of the indexes become corrupted due to this and need to be reset. Is it possible to reset all indexes which are…
Karl Cassar
  • 6,043
  • 10
  • 47
  • 84
1
vote
1 answer

How to activate Unique Constraint on the RavenDB serverside?

I'm using version 3.5 and read the documentation here https://ravendb.net/docs/article-page/3.5/Csharp/server/bundles/unique-constraints#installation on how to install/activate it on the serverside. But i dont understand any single step in…
Assassinbeast
  • 1,207
  • 1
  • 17
  • 33
1
vote
1 answer

RavenDB "Connection Was Reset" - After Enabling SSL

I am having some trouble with RavenDB after enabling SSL. I have followed the instructions on the RavenDB documentation for enabling SSL which can be found here. Namely, I updated the Raver.Server.exe.config file to include the new setting and I…
Newteq Developer
  • 2,257
  • 1
  • 26
  • 32
1
vote
0 answers

RavenDB-2.5 database restore process throwing error "Database already exists, cannot restore to an existing database"

I followed URL to do database backup and restore process of RavenDB 2.5 but it has throwing error in every computer while restoring database only. I can successfully backup my database but not able to restore. URL: Backup and Restore RavenDB…
Keval Gangani
  • 1,326
  • 2
  • 14
  • 28
1
vote
0 answers

RavenDb File Storage issue based on 3.0.3 version

We have a critical file storage issue of RavenDb. The context is we have a Web application server and a separate File service server based on RavenDB. The user tries to upload a file with the name of "xxx_Living #Mapping.pdf" for example. The web…
Kevin
  • 21
  • 2
1
vote
1 answer

Selecting documents with empty strings in RavenDB Studio

This ought to be simple enough, but I can't get a select statement going in RavenDB Studio where I say "give me all documents where field NAME_x is empty". The usual suspects don't yield anything: NAME_5:[[EMPTY_STRING]] NOT…
Hiro Protagonist
  • 474
  • 3
  • 15
1
vote
0 answers

Creating index in ravendb with Nodatime's LocalDate

I hope somebody can help me. I'm using Ravendb with the Nodatime bundles, and so far I didn't have any problem with it until I wanted to use some nodatime methods during index creation. Product: public class Product { public string Id { get;…
Iamisti
  • 1,680
  • 15
  • 30
1
vote
1 answer

How can RavenDB patch JSON objects?

Using Raven Studio's patch interface, I have the following patch script: this.Market = this.Market.replace(" Los Angeles","Los Angeles") to remove a prepended space. Which would be fine for a field with single-value strings, but my data is…
Eric Johnson
  • 59
  • 1
  • 7
1
vote
1 answer

Alter RavenDb created Database Bundles

How can I alter database bundles such as compression or any other bundle through Raven Studio or even via code?
Xaimaran
  • 403
  • 4
  • 17
1
vote
1 answer

Transform file doesn't work during import/export from/to RavenDB

I need to import/export some documents collection using filtering by substrings. I tried: raven.smuggler out http://localhost:8080/ dump.raven --database=Host1 --matadata-filter=Raven-Entity-Name=SagaUniqueIdentity --transform-file=testsaga.js and…
Dzianis Yafimau
  • 2,034
  • 1
  • 27
  • 38
1
vote
0 answers

What exactly happens when you reset a SQL replication in RavenDB?

I'm using RavenDB 3.0.30115 and it feels like SQL replications take a lot longer to process when you reset them than they used to. For example, I have a Contacts collection with 31 documents in, and a simple replication script to copy properties…
adrian
  • 2,793
  • 1
  • 23
  • 26
1
vote
0 answers

Checking connections to RavenDB

I have following problem: I'm using RavenDB I have configured Indexes at the database. After a while definition of indexes has been changed in code. All is running well at my machine, but as soon as I push changes to production, modified indexes are…
madoxdev
  • 3,770
  • 1
  • 24
  • 39
1
vote
1 answer

Lucene.Net range subquery not returning expected results (RavenDB related)

I'm trying to write a lucene query to filter some data in RavenDB. Some of the documents in this specific collection are assigned a sequential number, and the valid ranges are not continuous (for example, one range can be from 100-200 and another…
enriquein
  • 1,048
  • 1
  • 12
  • 28
1
vote
0 answers

Documents with same Raven-Entity-Name not grouped into collection

I've got this weird situtation with Ravendb collections. Saved two documents with exactly the same metadata: Documents: { "Title": "Some title", "ProductType": "Some type", "Description": "Some description", "Keywords": "Some…
Andrew
  • 5,395
  • 1
  • 27
  • 47