Microsoft T-SQL to Oracle PL/SQL translation - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T21:29:26Z http://stackoverflow.com/feeds/question/41781 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation 4 Microsoft T-SQL to Oracle PL/SQL translation Michael Prewecki 2008-09-03T14:25:04Z 2009-11-06T07:30:24Z <p>I've worked with T-SQL for years but i've just moved to an organisation that is going to require writing some Oracle stuff, probably just simple CRUD operations at least until I find my feet. I'm not going to be migrating databases from one to the other simply interacting with existing Oracle databases from an Application Development perspective. Is there are tool or utility available to easily translate T-SQL into PL/SQL, a keyword mapper is the sort of thing I'm looking for.</p> <p>P.S. I'm too lazy to RTFM, besides it's not going to be a big part of my role so I just want something to get me up to speed a little faster.</p> http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation/41800#41800 0 Answer by jodonnell for Microsoft T-SQL to Oracle PL/SQL translation jodonnell 2008-09-03T14:32:42Z 2008-09-03T14:32:42Z <p>It's not trivial to map them back and forth, so I doubt there's a tool that does it automatically. But this link might help you out: <a href="http://vyaskn.tripod.com/oracle_sql_server_differences_equivalents.htm" rel="nofollow">http://vyaskn.tripod.com/oracle_sql_server_differences_equivalents.htm</a></p> http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation/41847#41847 1 Answer by vzczc for Microsoft T-SQL to Oracle PL/SQL translation vzczc 2008-09-03T14:52:21Z 2009-03-11T21:38:48Z <p>The most important differences for plain T-SQL are:</p> <ul> <li>NVL replaces ISNULL</li> <li>SYSDATE replaces GETDATE()</li> <li>CONVERT is not supported</li> <li>Identity columns must be replaced with sequences &lt;-- not technically T- or PL/ but just SQL</li> </ul> <p>Note. I assume you do not use the deprecated SQL Server *= syntax for joins</p> <p>@jodonell: The table you link to is a bit outdated, oracle has become somewhat more standards compliant after 9i supporting things like CASE and ANSI outer joins</p> http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation/45918#45918 1 Answer by ninesided for Microsoft T-SQL to Oracle PL/SQL translation ninesided 2008-09-05T14:27:57Z 2008-09-05T14:27:57Z <p>If you replace your ISNULL and NVL nonsense with COALESCE, it'll work in T-SQL and PL/SQL!</p> http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation/636537#636537 4 Answer by Mark Brady for Microsoft T-SQL to Oracle PL/SQL translation Mark Brady 2009-03-11T21:53:19Z 2009-03-11T21:53:19Z <p>The language difference listed so far are <strong>trivial</strong> compared to the logical differences. Anyone can lookup NVL. What's hard to lookup is </p> <p><strong>DDL</strong></p> <p>In SQL server you manipulate your schema, anywhere, anytime, with little or no fuss.</p> <p>In Oracle, we don't like DDL in stored procedures so you have jump through hoops. You need to use EXECUTE IMMEDIATE to perform a DDL function.</p> <p><strong>Temp Tables</strong></p> <p>IN SQL Server when the logic becomes a bit tough, the common thing is to shortcut the sql and have it resolved to a temp table and then the next step is done using that temp table. MSSS makes it very easy to do this.</p> <p>In Oracle we don't like that. By forcing an intermediate result you completely prevent the Optimizer from finding a shortcut for you. BUT If you must stop halfway and persist the intermediate results Oracle wants you to make the temp table in advance, not on the fly.</p> <p><strong>Locks</strong></p> <p>In MSSS you worry about locking, you have nolock hints to apply to DML, you have lock escalation to reduce the count of locks.</p> <p>In Oracle we don't worry about these in that way.</p> <p><strong>Read Commited</strong></p> <p>Until recently MSSS didn't fully handle Read Committed isolation so you worried about dirty reads.</p> <p>Oracle has been that way for decades.</p> <p><strong>etc</strong></p> <p>MSSS has no concept of Bitmap indexes, IOT, Table Clusters, Single Table hash clusters, non unique indexes enforcing unique constraints....</p> http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation/636547#636547 0 Answer by Thomas Jones-Low for Microsoft T-SQL to Oracle PL/SQL translation Thomas Jones-Low 2009-03-11T21:56:11Z 2009-03-11T21:56:11Z <p>If you're doing a one-off conversion, rather than trying to support two versions, you must look at <a href="http://www.oracle.com/technology/tech/migration/workbench/index%5Fsqldev%5Fomwb.html" rel="nofollow">Oracle Migration Workbench</a>. This tool works with Oracle's SQLDeveloper (which you really should have if you are working with Oracle). This does a conversion of the schema, data, and some of the T-SQL to PL/SQL. Knowing both well, I found it did about an 80% job. Good enough to make it worth while to convert the bulk of procedures, and hand convert the remainder "tougher" unknown parts. </p> http://stackoverflow.com/questions/41781/microsoft-t-sql-to-oracle-pl-sql-translation/1685994#1685994 0 Answer by Liao for Microsoft T-SQL to Oracle PL/SQL translation Liao 2009-11-06T07:30:24Z 2009-11-06T07:30:24Z <p>Not cheap ($995) but this tool works great: <a href="http://www.swissql.com/products/sql-translator/sql-converter.html" rel="nofollow">http://www.swissql.com/products/sql-translator/sql-converter.html</a></p>