firebird mysql,将fbk(firebird)文件转换为MySql

本文提供了一种使用FBExport工具将Firebird数据库文件转换为MySQL的解决方案。通过指定参数,如数据库路径、用户名、密码和输出文件名,可以生成SQL插入语句。注意日期和时间的格式在导入到MySQL时需要正确处理。导入数据时,可以使用MySQL的SOURCE命令加载数据。
摘要由CSDN通过智能技术生成

I have firebird database file and I want to convert it into Mysql, but I don't know how. Can you help me how to convert it? Or can you give me the reference what software I have to use to convert it?

Thank you

解决方案

You have to use FBExport tool to generate a dump with inserts

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

Be careful with dates in mysql. Export in the correct format. To export db in custom date format use:

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

To import date to mySQL use SOURCE command:

$> mysql --user=root --password=password

$> use database_name

$> SOURCE c:\export\table_name.out

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值