如何将 SQL 服务器转换为 Oracle?

How to Convert SQL server to Oracle?(如何将 SQL 服务器转换为 Oracle?)
本文介绍了如何将 SQL 服务器转换为 Oracle?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个 SQL 服务器数据库(表、视图、SP...).我需要将此数据库转换为 Oracle 10g.我该怎么做?

I have a SQL server database (Tables, Views, SP...). I need to convert this database to Oracle 10g. How can I do it?

推荐答案

传输数据将很容易;SQL Server 集成服务可以做到这一点,或者 Oracle 的 SQL Developer.

Transferring the data will be easy; SQL Server integration services can do that, or Oracle's SQL Developer.

但是,Oracle 和 SQL Server 之间的视图和存储过程是不同的.SQL Server 使用 T-SQL,Oracle 使用 PL/SQL.这些不是很兼容,我不知道有什么工具可以在两者之间自动转换.如果您的数据库依赖于特定的 T-SQL 功能,则需要开发人员进行转换.

However, views and stored procedures are different between Oracle and SQL Server. SQL Server uses T-SQL, Oracle uses PL/SQL. These are not very compatible and I don't know a tool can automatically convert between the two. If your database relies on specific T-SQL features, you will need a developer to do the conversion.

这篇关于如何将 SQL 服务器转换为 Oracle?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)