1

Where is this being stored physically?

I can see where the user created database gets stored, how do I find out where the data for the system database is being stored?

tshepang
  • 12,111
  • 21
  • 91
  • 136
Alwyn
  • 8,079
  • 12
  • 59
  • 107

1 Answers1

5

Did you check in the folder that the Raven/DataDir key is set to, in the app.config file for RavenDB ?

Default is as follows.

<add key="Raven/DataDir" value="~\Data"/> 

So it would be in a Data folder under your root installation.

Source: http://ravendb.net/docs/server/administration/configuration

Shiva
  • 20,575
  • 14
  • 82
  • 112
  • 2
    This is the right folder. I was looking at the wrong instance of RavenDB and hence why the earlier comment. Marked as answer. – Alwyn Jan 06 '14 at 23:29