Dump Trac DB on Windows/XAMPP

Posted by Whiteknight on Server Fault See other posts from Server Fault or by Whiteknight
Published on 2009-12-31T15:13:18Z Indexed on 2010/03/25 8:03 UTC
Read the original article Hit count: 182

Filed under:
|
|

I have a Trac instance running on a WindowsXP machine with XAMPP. I am trying to migrate the trac instance to a newer Linux-based machine. However, I'm having a hard time getting the database to cooperate.

I try to dump the db with this command:

sqlite3 C:\tracroot\db\trac.db ".dump" >> mysqldump.sql

But the generated file is mostly empty:

BEGIN TRANSACTION;
COMMIT;

So that's not right. For the record my trac instance is running now and appears to have full access to all the contents of the DB. But sqlite3 (located in C:\xampp\apache\bin) can't seem to get any information from the file. The DB file itself has the header "SQLite format 3", so that seems to be correct.

I need to know one of two things:

  • How to get this dump working OR
  • An alternate way to migrate the Trac database to the new machine.

Update: When I try to open the .db file in sqlite3, I get the error Error: unsupported file format. What format is it in, and why is it unsupported?

© Server Fault or respective owner

Related posts about sqlite

Related posts about trac