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
