![]() |
sponsored links |
|
|
sponsored links
|
|
1
4th June 09:01
External User
Posts: 1
|
Neil (nospam@nospam.net) writes:
For SQL 2000 to be supported on Win 2003, SP3 of SQL 2000 is required that much I know. From that my conclusion is that running SQL 7 on Win 2000 is not supported. That does not preclude that it will not work, only that when it stops working, PSS is not going to help you out. But I like to stress that is my guess. You can run your database on compatibility mode 70, but this is not really the same as running on SQL 7. Compatibility mode is mainly an issue of syntax. For instance, if you use old-style outer join *=, this works in level 70 and 80, but they are rejected in level 90 on SQL 2000. But the optimizer is the same no matter the compatibility level, so you still need to test that your application works as expected. From this follows, that unless that you have a huge legacy in old-style outer join that would be tremendous task to test, it's better to move to SQL 2005 in compatlevel 90, and test that scenario. Of course, if you have a third-party application, you need to check with your vendor what they support. -- Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se Books Online for SQL Server 2005 at http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx Books Online for SQL Server 2000 at http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx |
|
|