Contents
Perl Script for converting from SQLite to MySQL
Description
This script was written in self defense as the conversion process is particularly painful.
The script will fix schema, and indexes to work correctly. It's specifically designed for an instance of Trac that has been installed for a while (with lots of extra tables from plugins ) and convert things over. Using 'dump' doesnt' work in this case because of the mixture of quotes. It's fairly easy to run and works across multiple machines.
Requirements
- you will need to have installed the DBI, DBD::mysql and DBD::SQLite perl modules
- you will need to have sqlite3 in your path.
- you need to have full permissions on the target database server
Bugs/Feature Requests
Existing bugs and feature requests for PerlSqliteToMysqlScript are here.
If you have any issues, create a new ticket.
Download
Download the zipped source from here.
Source
You can check out PerlSqliteToMysqlScript from here using Subversion, or browse the source with Trac.
Example
sandinak@hishost> sqlite2mysql.pl
sqlite2mysql.pl {options} [path-to-trac-instance]
-v verbose
-db {name} name of the MySQL database
-dh {hostname} hostname of the database server
-du {user} username for this database
-dp {pass} password for this database
Recent Changes
[9994] by sandinak on 03/28/11 22:15:30
Fixed non-localhost based updates.
[9993] by sandinak on 03/28/11 20:46:54
fixing STDERR redirect problem
[9992] by sandinak on 03/28/11 20:30:49
initial checkin
[9991] by sandinak on 03/28/11 20:23:30
New hack PerlSqliteToMysqlScript, created by sandinak

