We are migrating a ColdFusion based thin client application with a MSSQL 7.0 backend to MSSQL 2000. Our app/dev team is looking for any assistance/general guidelines/tips/ gotchas that others might have encountered when doing this. They are especially interested in what effects might be encountered with developed stored procedures and SQL Agent processes. Thanks Bob
See... http://www.sqlservercentral.com/columnists/jkadlec/sqlserverupgrade.asp http://searchdatabase.techtarget.com/tip/0,289483,sid13_gci883965,00.html Gaurav Moderator Man thrives, oddly enough, only in the presence of a challenging environment- L. Ron Hubbard
If your intention is just to reuse the SQL Server 7 stored procedures in your new SQL server 2000 implementation then you shouldn't be very worried. All your code should be compatible. Performance enhancements are another issue all together and you may want to think about other database objects and their design as well. Nathan H.O. Moderator SQL-Server-Performance.com
Watch out for collation conflicts if the SQL Server 2000 system databases have a different collation/sortorder than your SQL 7 database that you are migrating. If tempDB has a different collation that your user database you can run into problems. /ARgyle