Migrating SQL Language Support from Oracle to SQL Server
Recommended Conversion Strategy
Use the following checklist when migrating your Oracle DML statements and PL/SQL programs to Transact-SQL:
- Verify that the syntax for of all SELECT, INSERT, UPDATE, and DELETE statements is valid. Make any required modifications.
- Modify all outer joins to SQL-92 standard outer join syntax.
- Replace Oracle functions with the appropriate SQL Server functions.
- Verify all comparison operators.
- Replace the “||” string concatenation operators with the “+” string concatenation operators.
- Modify all PL/SQL cursors to either noncursor SELECT statements or Transact-SQL cursors.
- Replace or convert PL/SQL procedures, functions, and packages with Transact-SQL procedures.
- Convert PL/SQL triggers to Transact-SQL triggers.
(c) 1988-98 Microsoft Corporation. All Rights Reserved.