Older DML should continue to work fine. The problem you will run into is that some of the commands have changed. For example BACKUP DATABASE used to be called DUMP DATABASE. sp_grantlogin is now CREATE LOGIN.
If you use system tables they can change between versions.
In SQL 2000 and SQL 7 in the sysusers table the roles column held the first role that the login was a member of. In SQL 2005 that column is always null.
Your regular SELECT, INSERT, UPDATE and DELETE commands should continue to work fine. It's the calls to the system objects and the DDL commands that have changed for the most part.
I do belive that if you used the oldstyle joins you may have problems in 2005. These are ones without explicitily using the word join in them. If you did this with outer joins, these are a problemin 200 as well as they do not correctly resolve and give the worng data in return.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.