How to repair the database files: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Warnings= '''Backup all files before attempting a repair!''' <br> '''Shutdown the server before attempting a repair!''' =Windows server= ==Easy way== *Download [http://updates...") |
No edit summary |
||
Line 1: | Line 1: | ||
=You might be OK= | |||
There might be nothing to worry about. Check these points: | |||
* Did you come to this page because of a message you saw in the server console or logs? | |||
* Is the following text at the start of the error message block? | |||
ERROR: near "3": syntax error | |||
* If so, then everything is OK. You don't have to do anything written below and you can safely ignore the error message. | |||
=Warnings= | =Warnings= | ||
'''Backup all files before attempting a repair!''' | '''Backup all files before attempting a repair!''' |
Revision as of 08:34, 29 January 2012
You might be OK
There might be nothing to worry about. Check these points:
- Did you come to this page because of a message you saw in the server console or logs?
- Is the following text at the start of the error message block?
ERROR: near "3": syntax error
- If so, then everything is OK. You don't have to do anything written below and you can safely ignore the error message.
Warnings
Backup all files before attempting a repair!
Shutdown the server before attempting a repair!
Windows server
Easy way
- Download this
- Unzip and put the files into server/mods/deathmatch/
- Double click on sqlite_repair_internal_db.bat to repair internal.db
- Double click on sqlite_repair_registry_db.bat to repair registry.db
Hard way
- Download sqlite-shell-win32 from here. If that link fails, the main download page is here.
- Unzip and put sqlite3.exe into server/mods/deathmatch/
- Open command prompt the change directory to server/mods/deathmatch/
- To repair internal.db:
- Copy internal.db to internal_original.db
- Do this command: sqlite3.exe internal_original.db .dump | sqlite3.exe internal_repaired.db
- Copy internal_repaired.db to internal.db
- To repair registry.db:
- Copy registry.db to registry_original.db
- Do this command: sqlite3.exe registry_original.db .dump | sqlite3.exe registry_repaired.db
- Copy registry_repaired.db to registry.db
Linux server
Only way
- Download sqlite-shell-linux from here. If that link fails, the main download page is here.
- Unzip and put sqlite3 into server/mods/deathmatch/
- To repair internal.db:
- Copy internal.db to internal_original.db
- Do this command: ./sqlite3 internal_original.db .dump | ./sqlite3 internal_repaired.db
- Copy internal_repaired.db to internal.db
- To repair registry.db:
- Copy registry.db to registry_original.db
- Do this command: ./sqlite3 registry_original.db .dump | ./sqlite3 registry_repaired.db
- Copy registry_repaired.db to registry.db