up vote 6 down vote favorite
6
share [g+] share [fb]

i have an export sql file containing tables and data from mysql and i want to import it into a sqlite 3 db.

please can you tell me the best way?

i get error reading file in via sqlite3 binary.

link|improve this question

79% accept rate
feedback

7 Answers

up vote 12 down vote accepted

This shell script help you

#!/bin/sh
if [ "x$1" == "x" ]; then
   echo "Usage: $0 <dumpname>"
   exit
fi
cat $1 |
grep -v ' KEY "' |
grep -v ' UNIQUE KEY "' |
grep -v ' PRIMARY KEY ' |
sed '/^SET/d' |
sed 's/ unsigned / /g' |
sed 's/ auto_increment/ primary key autoincrement/g' |
sed 's/ smallint([0-9]*) / integer /g' |
sed 's/ tinyint([0-9]*) / integer /g' |
sed 's/ int([0-9]*) / integer /g' |
sed 's/ character set [^ ]* / /g' |
sed 's/ enum([^)]*) / varchar(255) /g' |
sed 's/ on update [^,]*//g' |
perl -e 'local $/;$_=<>;s/,\n\)/\n\)/gs;print "begin;\n";print;print "commit;\n"' |
perl -pe '
  if (/^(INSERT.+?)\(/) {
     $a=$1;
     s/\\'\''/'\'\''/g;
     s/\\n/\n/g;
     s/\),\(/\);\n$a\(/g;
  }
  ' > $1.sql
cat $1.sql | sqlite3 $1.db > $1.err
ERRORS=`cat $1.err | wc -l`
if [ $ERRORS == 0 ]; then
  echo "Conversion completed without error. Output file: $1.db"
  rm $1.sql
  rm $1.err
    rm tmp
else
   echo "There were errors during conversion.  Please review $1.err and $1.sql for details."
fi
link|improve this answer
Hi, When I run this script, I get error because it doesnt understand fi in if. I changed #!/bin/sh to #!/bin/sh, which gets around it. But the script just deletes the sql dump file and writes an empty .db file. – DEzra Jan 29 '09 at 14:36
2  
Here is a slightly updated and Mac-tested version: gist.github.com/741043 – miku Dec 14 '10 at 20:28
I needed to add the following two lines after the "grep -v ' PRIMARY KEY ' |" to make it work: grep -v '^LOCK TABLES' | grep -v '^UNLOCK TABLES;' | Other than that, works great! Thanks! – Kyle Dewey May 31 '11 at 21:42
1  
i get a lot of syntax errors :( – DataGreed Jun 8 '11 at 13:48
feedback

To get the above script to work, I made the following changes:

  1. run it with #!/bin/bash
  2. add two seds to the list of pipelined seds:
    • sed 's/\\r\\n/\\n/g'
    • sed 's/\\"/"/g'
  3. the 'rm tmp' line is a no-op (unless you have a file named 'tmp' lying around :O )
  4. my mysqldump command looked like this:

    $ mysqldump -u usernmae -h host --compatible=ansi --skip-opt -p database_name > dump_file

Then it worked nicely... thanks for the script.

link|improve this answer
feedback

This script throws the following errors for me on OSX.

Substitution loop at -e line 1, <> chunk 1.

link|improve this answer
feedback

works fine on Centos 5.3 64bit. once you have the output file load it like so:

shell> sqlite3 file_name.db SQLite version 3.3.6 Enter ".help" for instructions sqlite> .databases seq name file


0 main /current_directory/file_name.db
sqlite> select * from table; . . . . . results... sqlite>.quit

link|improve this answer
feedback

When the sqlite3 database is going to be used with ruby you may want to change:

tinyint([0-9]*) 

to:

sed 's/ tinyint(1*) / boolean/g ' |
sed 's/ tinyint([0|2-9]*) / integer /g' |

alas, this only half works because even though you are inserting 1's and 0's into a field marked boolean, sqlite3 stores them as 1's and 0's so you have to go through and do something like:

Table.find(:all, :conditions => {:column => 1 }).each { |t| t.column = true }.each(&:save)
Table.find(:all, :conditions => {:column => 0 }).each { |t| t.column = false}.each(&:save)

but it was helpful to have the sql file to look at to find all the booleans.

link|improve this answer
feedback

I had an issue with the mysql db being ISO-8859-1 (Latin-1). When did the conversion to sqlite3 assumed the data was UTF-8 resulting in decoding errors.

It was easy to fix with this:

iconv -f ISO-8859-1 -t UTF-8 mysql_dump_file > mysql_dump_file_utf8

Incase this helps someone.

link|improve this answer
feedback

At least, with mysql 5.0.x, I had to remove collate utf8_unicode_ci from mysql's dump before importing it to sqlite3. So I modified the script to include the following to the list of seds:

sed 's/ collate utf8_unicode_ci/ /g' |

Update:

MySQL treats boolean fields as "tinyint(1)", so I had to add the following before tinyint([0-9]*) sed:

sed 's/ tinyint(1) / boolean /g' |

Also, since I'm trying to replicate a mysql db (production) to a sqlite3 db (development) of a Ruby On Rails application, I had to add the following line in order to set an auto-incrementing primary key:

sed 's/) NOT NULL/) PRIMARY KEY AUTOINCREMENT NOT NULL/g' |

I'm still trying to figure out a way to change the KEY entries from mysql to its corresponding CREATE INDEX entry of sqlite3.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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