show/hide this revision's text 2 Ident columns aren't part of T-SQL. Sequences are part of PL.SQL

The most important differences for plain T-SQL are:

  • NVL replaces ISNULL
  • SYSDATE replaces GETDATE()
  • CONVERT is not supported
  • Identity columns must be replaced with sequences <-- not technically T- or PL/ but just SQL

Note. I assume you do not use the deprecated SQL Server *= syntax for joins

@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

show/hide this revision's text 1

The most important differences for plain T-SQL are:

  • NVL replaces ISNULL
  • SYSDATE replaces GETDATE()
  • CONVERT is not supported
  • Identity columns must be replaced with sequences

Note. I assume you do not use the deprecated SQL Server *= syntax for joins

@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