[轉]svn: E200030: sqlite[S11]: database disk image is malformed

I had the same problem. The following blog post helped me resolve it: http://www.polak.ro/svn-e200030-sqlite-database-disk-image-is-malformed.html

You do an integrity check on the sqlite database that keeps track of the repository (/.svn/wc.db):

sqlite3 .svn/wc.db "pragma integrity_check"

That should report some errors.

Then you might be able to clean them up by doing:

sqlite3 .svn/wc.db "reindex nodes"
sqlite3 .svn/wc.db "reindex pristine"
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章