Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
Thanks John, but I'm far of an expert...
Some things else that comes to my mind are:
1) the CONNECT BY PRIOR does not have any equivalent in sql server (at least before 2008)
2) the non standard outer join syntax like this:
Code:
select x,y,z
from users u, attr a
where u.id=a.id(+)
is not supported in ms sql server. You have to specify the complete query
Code:
select x, y,z
from users u
left outer join attr a on u.id=a.id
3) The notion of package don't exists in sql server. You have stored procedures, scalar type functions and table type functions, but they are not grouped in packages like in Oracle
Otherwise, not much comes to my mind.
Maybe some functions or data types differences.
__________________
Only a biker knows why a dog sticks his head out the window.
|