从 SQLSERVER 数据库生成 Oracle SQL 脚本
我有一个 Microsoft SQL Server 数据库(表、关系和数据)。
但现在我想要在 Oracle 中获得该数据库的完全相同的副本。
我在想可能有某种工具或转换器可以生成 Oracle sql 脚本,我可以运行这些脚本来创建和填充我的新 Oracle 数据库。
这种事情可能吗?
我怎样才能做到这一点?
I have a Microsoft SQL Server database(tables, relationships and data).
But now I want an exact same copy of this database in Oracle.
I was thinking there may be some sort of a tool or converter that could generate Oracle sql scripts that I could run to create and populate my new Oracle database.
Is this kind of thing possible?
And how can I achieve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最好的选择是使用数据库建模工具,它可以对 SQL Server 数据库进行逆向工程,然后生成脚本在 Oracle 中重新创建它。
DB Designer Fork 可以为您完成此操作,并且是开源的。
Your best bet is to use a DB modelling tool which can reverse engineer your SQL Server database and then generate a script to recreate it in Oracle.
DB Designer Fork can do this for you and is Open Source.