0

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?

Dhiraj
  • 613
  • 6
  • 25

1 Answers1

3

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

Ayende Rahien
  • 22,925
  • 1
  • 36
  • 41