Java 结果集限制的任何解决方法
我正在做数据库迁移工作。我必须将 MSSQL 中的数据库复制到 MySql 数据库。可以想出一个小的 java 实用程序来将表结构从 MSSQL 复制到 MySql 数据库。现在我必须将所有数据从 MSSQL 复制到 MySql。我尝试使用java中的结果集从表中获取所有数据,但它只能获取一小部分数据。是否有任何替代解决方案可以将所有数据从表获取到结果集或我可能使用的其他类似结构,以将相同的数据插入到 mysql Db 中。一个表有超过 25,00,000 条记录。
I am doing a database migration work. I have to copy a database in MSSQL to MySql database. It was possible to come up with a small java utility to copy table stucture from MSSQL to MySql Database. Now i have to copy all data from MSSQL to MySql. I tried using resultset in java to obtain all data from a table but then it could only fetch a small part of data. Is there any alternate solution to get all data from table to resultset or to some other similar structure which i could possibly use, to insert the same data into mysql Db. There are more than 25,00,000 records for a table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
原则上,JDBC 结果集应该允许您迭代大型查询结果的整体。
然而,通过 Java 可能不是最有效的方法。批量导出到文件和批量导入可能是正确的选择。 MS 似乎有一个 bcp 实用程序可以进行导出。
A JDBC result set should in principle allow you to iterate the entirity of a large query result.
However going via Java may not be the most efficient approach. Bulk export to a file and bulk import may be the way to go. It appears that MS has a bcp utility that may do the export.
实现您所描述的数据库迁移的最佳方法是使用 ETL 工具 - 这里有一个很好的 ETL 概述:
http://en.wikipedia.org/wiki/Extract,_transform,_load
你没有理由不能使用 JDBC 来做到这一点,所以如果你准备滚动您自己的请详细说明“只能获取一小部分数据”:
The best way to achieve a database migration like you describe is to use and ETL Tool - there's a good overview of ETL here:
http://en.wikipedia.org/wiki/Extract,_transform,_load
There's no reason why you wouldn't be able to do this with JDBC and so if you are set on rolling your own please elaborate on 'could only fetch a small part of data':