December 14, 2007 at 10:10 am
I have erroneously restored an unneeded 6.5 compatible database to my new SQL 2005 instance. I would like to remove it, but cannot.
The error message and the links provided below are of no use.
Has anyone else had this problem? :w00t:
TITLE: Microsoft SQL Server Management Studio:
------------------------------
Drop failed for Database 'mas500_app'. (Microsoft.SqlServer.Smo)
------------------------------
ADDITIONAL INFORMATION:
6.5 database compatibility level is not supported. (Microsoft.SqlServer.Smo)
For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&ProdVer=9.00.3042.00&LinkId=20476
------------------------------
BUTTONS:
OK
------------------------------
December 14, 2007 at 10:52 am
Use DROP DATABASE in a query window
Tommy
Follow @sqlscribeDecember 15, 2007 at 12:11 pm
🙂 I kept googling and found a guy who had done the exact same thing and the following corrected the problem:
--- Reports the current compatibility level of 'MyDBName'
EXEC sp_dbcmptlevel 'MyDBName';
GO
--- Changes it to SQL 2000 - 80
EXEC sp_dbcmptlevel 'MyDBName', '80';
GO
--- Changes it to SQL 2005 - 90
EXEC sp_dbcmptlevel 'MyDBName', '90';
GO
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply