Can u please give tips on Differences between datatypes, functions, limits,statements etc in both oracle 10g and SQLserver2008 . I need this help for converting Store procedures from SQLserver2008 to oracle 10g
Software/Hardware used:
ASKED:
July 2, 2011 7:54 AM
UPDATED:
May 15, 2012 3:20 AM
If you are converting more than one or two stored procedures, you should find and acquire a conversion tool. There are enough syntax differences between T-SQL and PL/SQL that manual conversion is a pain.
Google “t-sql to pl/sql converter” or “t-sql to pl/sql conversion” and you will find lots of links. Any decent converter should automatically convert 90%+ of the existing code.
The good news is that virtually anything coded in T-SQL can be “transliterated” to PL/SQL. The reverse is not true, as there are some advanced structural capabilities of PL/SQL for which there are no T-SQL equivalents (nested procedures/functions and Packages being two major issues).