vote up 2 vote down star
2

hi,

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.

flag

56% accept rate

3 Answers

vote up 5 vote down check

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|flag
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. – spudnik1979 Jan 29 at 14:36
vote up 0 vote down

This script throws the following errors for me on OSX.

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

link|flag
vote up 3 vote down

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|flag

Your Answer

Get an OpenID
or

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