vote up 0 vote down star

How do I dump the data, and only the data, not the schema, of some SQLite3 tables of a database (not all the tables)? The dump should be in SQL format, as it should be easily re-entered into the database latter and should be done from the command line. Something like

sqlite3 db .dump

but without dumping the schema and selecting which tables to dump.

flag
To what format? Anything in particular, or are your just looking for a human readable backup? Please specify. – dmckee Sep 16 '08 at 18:55
I want to dump to SQL format, so that I can restore it easily. I've added that information to the main question. – J. Pablo Fernández Sep 18 '08 at 7:01

5 Answers

vote up 0 vote down

Not the best way, but at lease does not need external tools (except grep, which is standard on *nix boxes anyway)

sqlite3 database.db3 .dump | grep '^INSERT INTO "tablename"'

but you do need to do this command for each table you are looking for though.

link|flag
vote up 5 vote down

You don't say what you wish to do with the dumped file.

I would use the following to get a CSV file, which I can import into almost everything

.mode csv
.header on
.out file.dmp
select * from emp;

If you want to reinsert into a different SQLite database then:

.mode insert
.out file.sql
select * from emp

link|flag
What I want to do with the dumped file: > The dump should be in SQL format, as it should be easily re-entered into the database latter just put it back into the DB easily, maybe edit it too. – J. Pablo Fernández Oct 20 '08 at 5:41
vote up 0 vote down

The best method would be to take the code the sqlite3 db dump would do, excluding schema parts.

Example pseudo code:

SELECT 'INSERT INTO ' || tableName || ' VALUES( ' || 
  {for each value} ' quote(' || value || ')'     (+ commas until final)
|| ')' FROM 'tableName' ORDER BY rowid DESC

See: src/shell.c:838 (for sqlite-3.5.9) for actual code

You might even just take that shell and comment out the schema parts and use that.

link|flag
vote up 2 vote down

You could use a tool like SQLite Administrator.

There's a long list of such tools here.

link|flag
vote up 0 vote down

You could do a select on the tables inserting commas after each field to produce a csv, or use a GUI tool to return all the data and save it to a csv.

link|flag
My intention was to produce an SQL file that could easily re-added to the DB. – J. Pablo Fernández Oct 20 '08 at 5:39

Your Answer

Get an OpenID
or

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