Anyone know a quick easy way to migrate a SQLite3 database to MySQL?
|
feedback
|
|
Here is a list of converters: An alternative method that would work nicely but is rarely mentioned is: use a ORM class that abstracts the specific database differences away for you. e.g. you get these in PHP (RedBean), Python (Django's ORM layer, Storm, SqlAlchemy), Ruby on Rails ( ActiveRecord), Cocoa (CoreData) i.e. you could do this:
| ||||
|
feedback
|
|
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.
| |||||||||||||||
feedback
|
|
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/ | |||||
feedback
|
|
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:
| |||||||
feedback
|
|
Surprised no one's mentioned this by now, but there's actually a tool explicitly for this. It's in perl, SQL:Translator: http://sqlfairy.sourceforge.net/ Converts between most any form of tabular data (Different SQL formats, Excel spreadsheet), and even makes diagrams of your SQL schema. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
The python script worked after a few modifications as follows:
...
...
... | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
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 | |||
|
feedback
|
|
Ha... I wish I had found this first! My response was to this post... http://stackoverflow.com/questions/489277/script-to-convert-mysql-dump-sql-file-into-format-that-can-be-imported-into-sqlit Combining the two would be exactly what I needed: When the sqlite3 database is going to be used with ruby you may want to change:
to:
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:
but it was helpful to have the sql file to look at to find all the booleans. | |||
|
feedback
|
|
Based on Jims's solution: Quick easy way to migrate SQLite3 to MySQL?
This works for me. I use sed just to throw the first line, which is not mysql-like, but you might as well modify dump.py script to throw this line away. | |||
|
feedback
|
| ||||
|
feedback
|
|
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 !!! | ||||
|
feedback
|
|
fallino correctly identified the location of the error in the script. I have the solution. The problem is the lines: line = re.sub(r"([^'])'t'(.)", "\1THIS_IS_TRUE\2", line) line = line.replace('THIS_IS_TRUE', '1') line = re.sub(r"([^'])'f'(.)", "\1THIS_IS_FALSE\2", line) line = line.replace('THIS_IS_FALSE', '0') The replacement pattern (2nd parameter) in the re.sub calls is a "regular" string, so instead of \1 expanding to the first regexp match, it expands to a literal 0x01. Likewise, \2 expands to 0x02. For example, a line containing:
,'t','f',
would be replaced with:
<0x01>10<0x02> The fix is to either change the replacement strings by adding an 'r' prefix, or by escaping the \1 and \2 in the existing string. Since easy manipulation of regexp strings is what raw strings are for, here's the fix using those:
| |||
|
feedback
|