Mysql
 sql >> Database >  >> RDS >> Mysql

Converti file fbk (firebird) in MySql

Devi usare FBExport strumento per generare un dump con inserti

FBExport.exe -D "c:\DB\WL.FDB" -U user –P password -Si -V TEST -F test.out
Where: 
Si – means “export to SQL inserts” format
V – table name to export
F – output filename

Fai attenzione alle date in MySQL. Esporta nel formato corretto. Per esportare db in formato data personalizzato usa:

$> FBExport.exe -D "c:\DB\WL.FDB" -U user –P password -Si -V TEST -F     test.out -J "Y-M-D" -K "H:M:S"
Where: 
J  - date format
K – time format

Per importare la data in MySQL usa il comando SOURCE:

$> mysql --user=root --password=password
$> use  database_name
$> SOURCE  c:\export\table_name.out

Rif:http://kosiara87 .blogspot.nl/2011/03/export-data-from-firebird-in-pure-sql.html