Anyone know a quick easy way to migrate a SQLite3 database to MySQL?
|
|
From the SQLite site there appears to be a dump command. You can tell it how you want the data. From there you can import it into mysql. |
||
|
|
|
|
Pretty sure that just dumps the data. I was looking for a tool that would migrate the schema too. Probably just end up writing something myself. Thanks though. |
||
|
|
|
|
I recently had to migrate from MySQL to JavaDB for a project that our team is working on. I found a Java library written by Apache called DdlUtils that made this pretty easy. It provides an API that lets you do the following:
The tools that we ended up with weren't completely automated, but they worked pretty well. Even if your application is not in Java, it shouldn't be too difficult to whip up a few small tools to do a one-time migration. I think I was able to pull of our migration with less than 150 lines of code. |
||
|
|
|
|
Probably the quick easiest way is using the sqlite .dump command, in this case create a dump of the sample database.
You can then (in theory) import this into the mysql database, in this case the test database on the database server 127.0.0.1, using user root.
I say in theory as there are a few differences between grammars. In sqlite transactions begin
MySQL uses just
There are other similar problems (varchars and double quotes spring back to mind) but nothing find and replace couldn't fix. Perhaps you should ask why you are migrating, if performance/ database size is the issue perhaps look at reoginising the schema, if the system is moving to a more powerful product this might be the ideal time to plan for the future of your data. |
||
|
|
|
|
Everyone seems to starts off with a few greps and perl expressions and you sorta kinda get something that works for your particular dataset but you have no idea if it's imported the data correctly or not. I'm seriously surprised nobody's built a solid library that can convert between the two. Here a list of ALL the differences in SQL syntax that I know about between the two file formats: The lines starting with:
are not used in MySQL
Here is a very basic hacked up perl script which works for my dataset and checks for many more of these conditions that other perl scripts I found on the web. Nu guarentees that it will work for your data but feel free to modify and post back here.
|
||||||
|
|
|
It's messy because dump files are database vendor specific. If you're using Rails, a great plugin exists for this. Read: http://blog.heroku.com/archives/2007/11/23/yamldb_for_databaseindependent_data_dumps/ |
||
|
|
|
works beautifully! thanks! |
||
|
|
|
|
Here is a python script, built off of Shalmanese's answer and some help from Alex martelli over at http://stackoverflow.com/questions/1067060/perl-to-python I'm making it community wiki, so please feel free to edit, and refactor as long as it doesn't break the functionality (thankfully we can just roll back) - It's pretty ugly but works use like so (assuming the script is called
Which you can then import into mysql note - you need to add foreign key constrains manually since sqlite doesn't actually support them here is the script:
|
|||
|
|
|
|
I use data loader for migrating almost any data, it helps me to convert MSSQL to MYSQL, MS access to MSSQL, mysql, csv loader, foxpro and MSSQL to MS access, MYSQl, CSV, foxpro etc. In my view this is a best Data Migration Tool Download Free : http://www.dbload.com |
||
|
|
|
|
Here is a tool to convert SQL to MYSQL database. That i found on google search it says it can convert almost any database try and tel me is that worth or not. |
||
|
|
|
|
Hello, This script is ok except for this case that of course, I've met : INSERT INTO "requestcomparison_stopword" VALUES(149,'f'); INSERT INTO "requestcomparison_stopword" VALUES(420,'t'); The script should give this output : INSERT INTO requestcomparison_stopword VALUES(149,'f'); INSERT INTO requestcomparison_stopword VALUES(420,'t'); But gives instead that output : INSERT INTO requestcomparison_stopword VALUES(1490; INSERT INTO requestcomparison_stopword VALUES(4201; with some strange non-ascii characters around the last 0 and 1. This didn't show up anymore when I commented the following lines of the code (43-46) but others problems appeared:
This is just a special case, when we want to add a value being 'f' or 't' but I'm not really comfortable with regular expressions, I just wanted to spot this case to be corrected by someone. Anyway thanks a lot for that handy script !!! |
|||
|
|
