Export Firebird database to sql

♀尐吖头ヾ 提交于 2019-12-06 10:30:19

You can use the FBExport tool to generate a dump with inserts. However I am not sure if it is still maintained and works with the latest Firebird versions (it says it was tested against Firebird 1.0 - 2.1).

See Export data from Firebird into pure SQL inserts/ export data from Firebird to MySQL for an example of how to use this tool:

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

In IBExpert you can extract Metadata but it will be in Firebird SQL dialect so if you use generator or sequence you will have problem with MySQL which not support this.

The best way is to use tools like Database Workbench and use DataPump. There are many others tools which are able to make DataPump but I like this one.

CleverComponents also made one

Why changing to MySQL ?

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!