vote up 7 vote down star
5

I have a file of about 30000 lines of data I want to load into a sqlite3 database. Is there a faster way that generating insert statements for each line of data?

The data is space delimited and maps directly to the sqlite3 table. Is there any sort of bulk insert method for adding volume data to a database?

Has anyone devised some deviously wonderful way of doing this if it's not built in?

I should preface this by asking is there a c++ way to do it from the API?

Thanks.

flag

5 Answers

vote up 5 vote down check

You can also try tweaking a few parameters to get extra speed out of it. Specifically you probably want PRAGMA synchronous = OFF;.

link|flag
1  
pragma synchronous = OFF is a bad idea - it'll hardly impact performance at all for bulk inserts, and your DB will be corrupted on a power failure. A much better idea is to wrap your inserts in a transaction. – Eamon Nerbonne Aug 31 at 12:39
vote up 14 vote down
  • wrap all INSERTs in a transaction, even if there's a single user, it's far faster.
  • use prepared statements.
link|flag
True for most (all?) SQL databases. – stesch Dec 12 '08 at 21:22
vote up 7 vote down
  • Increase PRAGMA default_cache_size to a much larger number. This will increase the number of pages cached in memory.

  • Wrap all inserts into a single transaction rather than one transaction per row.

  • Use compiled SQL statements to do the inserts.
  • Finally, as already mentioned, if you are willing forgo full ACID compliance, set PRAGMA synchronous = OFF;.
link|flag
vote up 6 vote down

You want to use the .import command. See below:

[ramanujan:~]$cat demotab.txt
44      92
35      94
43      94
195     49
66      28
135     93
135     91
67      84
135     94

[ramanujan:~]$echo "create table mytable ( col1 int, col2 int);" | sqlite3 foo.sqlite
[ramanujan:~]$echo ".import demotab.txt mytable"  | sqlite3 foo.sqlite

[ramanujan:~]$sqlite3 foo.sqlite
-- Loading resources from /Users/ramanujan/.sqliterc
SQLite version 3.6.6.2
Enter ".help" for instructions
Enter SQL statements terminated with a ";"
sqlite> select * from mytable;
col1    col2
44      92
35      94
43      94
195     49
66      28
135     93
135     91
67      84
135     94

Note that this bulk loading command is not SQL but rather a custom feature of sqlite. As such it has a weird syntax because we're passing it via echo to the interactive command line interpreter, sqlite3.

In Postgres the equivalent is COPY FROM: http://www.postgresql.org/docs/8.1/static/sql-copy.html

In MySQL it is LOAD DATA LOCAL INFILE: http://dev.mysql.com/doc/refman/5.1/en/load-data.html

One last thing: remember to be careful with the value of .separator. That is a very common gotcha when doing bulk inserts.

sqlite> .show .separator
     echo: off
  explain: off
  headers: on
     mode: list
nullvalue: ""
   output: stdout
separator: "\t"
    width:

You should explicitly set the separator to be a space, tab, or comma before doing .import.

link|flag
vote up 1 vote down

The following is a nice compendium of tips:

SQLite optimization

Depending on the size of the data and the amount of RAM available, one of the best performance gains will occur by setting sqlite to use an all-in-memory database rather than writing to disk.

For in-memory databases, pass NULL as the filename argument to sqlite3_open and make sure that TEMP_STORE is defined appropriately

(All of the above text is excerpted from my own answer to a separate sqlite-related question)

link|flag
The link points to an incomplete document. There is less information than one would hope for, – Richard Oct 9 at 22:23

Your Answer

Get an OpenID
or

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