Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Problem has appeared after DB restore. How I can repair DB?

share|improve this question

3 Answers

up vote 22 down vote accepted

Gengzu, You probably moved the database between machines. In order to resolve the problem, you need to run:

 esentutl /d Data

From the RavenDB data directory

share|improve this answer
2  
Yes, so why does this require a manual step? What is esent/RavenDB tracking that is machine specific? What stops esent/RavenDB doing this step at startup? – TFD Aug 16 '12 at 21:12
2  
Doesn't work for me. I get: Operation terminated with error -1032 (JET_errFileAccessDenied, Cannot access file, the file is locked or in use) after 20.31 seconds. – FerretallicA Sep 11 '12 at 23:26
1  
Didn't end up resolving it. It was a good push to look for alternatives where I found OrientDB which offers most of the benefits of RavenDB without any of the licensing catches. – FerretallicA Oct 30 '12 at 0:17
6  
Thanks for your response. – Mohsen Alikhani Nov 5 '12 at 8:32
1  
Running "esentutl /d Data/Data" solved the -1032 error for me. Seems there is a file named "Data" inside of the directory named "Data" which is confusing things. – Ondrej Balas Dec 27 '12 at 23:35
show 4 more comments

You should run the util from inside that Data folder in Raven. When I ran it in the root of Raven server -> "Operation terminated with error -1032..." also showed up.

share|improve this answer
Please clarify your answer. – Matt Olan Nov 4 '12 at 18:41

This happened us after moving the database to another machine. The other answers here seem to be for previous versions (we are on 2048)

Open a command prompt as administrator

From RavenDB's \Database\System folder run:

esentutl /d Data
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.