Common migration issues (version 2000 to 2005)

Published 12 August 08 07:12 AM | Madhivanan 

Many users complain that some new features are not working in SQL Server 2005 when the server is migrated from SQL Server 2000

These are the common tasks that should be done to avoid some migration issues

1 Change the compatibility level to 90
 
  
EXEC sp_dbcmptlevel 'your_db_name',90

  This will solve the errors that occur during the execution of the code that contains newly introduced functions 
  like row_number(), rank(),etc

2 Enable Ad Hoc Distributed Queries

  EXEC SP_CONFIGURE 'show advanced options', 1
  RECONFIGURE
  go
  EXEC SP_CONFIGURE 'Ad Hoc Distributed Queries', 1
  RECONFIGURE
  go
  EXEC SP_CONFIGURE 'show advanced options', 0
  RECONFIGURE

  This will solve the errors that occur when you use OPENROWSET and OPENDATASOURCE commands

3 Install Service Pack1 for SQL Server 2005
 
  This will solve the errors that occur when you use Import/Export wizard

Filed under: , ,

Comments

# Other SQL Server Blogs around the Web said on August 12, 2008 2:26 AM:

Many users complain that some new features are not working in SQL Server 2005 when the server is migrated

# SQL Server Transact-SQL (SSQA.net) : Common migration issues from version 2000 to 2005 said on August 12, 2008 4:05 AM:

PingBack from http://sqlserver-qa.net/blogs/t-sql/archive/2008/08/12/4770.aspx

Anonymous comments are disabled

Search

Go

This Blog

«August 2008»
SMTWTFS
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

Syndication