Try again

200512270453934121.gif

博客园 首页 联系 管理

 

In the  Oracle - MSSQL Convert Tips (1) I already mentioned several tips that used very often.
Today's project contains too much views , stored procedures and trigger  and the lines of these code are big.
So I try to find some tools to ease the conversion by Google with “database/sql migration/convertion PL/SQL T-SQL convert” all kind of key words

I found several toos,they all commerical software,I tried them on by one.
found that SwissSQL's  Oracle To SQL Server (PL/SQL to T-SQL) migration tool is better.
In its help html document , we  can also learn some common  convertion rules.

Also found a page of SQL Function Reference: Oracle vs. SQL Server which list many functions including Math, Datatime,String used by Oracle and SQL Server.

little tip today:
select top 10 salary from employee order by salary
select salary from ( select salary from employee order by salary ) where rownum < 11

posted on 2006-07-11 22:29  共同学习,共同进步  阅读(209)  评论(0编辑  收藏  举报