Dhiraj
Dhiraj

Reputation: 632

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 any way that I can execute it on all the DBs in one go?

Upvotes: 0

Views: 98

Answers (1)

Ayende Rahien
Ayende Rahien

Reputation: 22956

There is no way to execute it on all databases, you would have to execute it on each in turn

Upvotes: 3

Related Questions