Dave Hawes Blog
It is all about delivering

Upgrading a Microsoft Sql 2000 database to 2005

November 14, 2008 09:56 by davehawes

Just been banging my head against the wall trying to get diagramming working in Sql Server 2005 for a Sql 2000 database I restored. It turns out that I needed to run a couple of stored procs to enable this:

 

EXEC sp_dbcmptlevel @dbname ='<databaseName>', @new_cmptlevel = '90'
GO
use [<databaseName>]
GO
Alter database [<databaseName>] set parameterization forced
GO

 

If found this info in a bigger article about upgrading the whole sql server:

http://itknowledgeexchange.techtarget.com/itanswers/upgrading-microsoft-sql-2000-to-sql-2005/


Tags:
Categories: MSSQL
Actions: E-mail | Permalink | Comments (0) | Comment RSSRSS comment feed

Comments

Add comment




  Country flag

biuquote
  • Comment
  • Preview
Loading