Click here to Skip to main content
15,893,644 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I created a mdf databse with management studio 2008 but
in other system i install sql server 2008 R2
and by attaching file via management studio 2008 R2
error message appear that show dont support version

this server supports 655 and earlier.


how to attach this file?
Posted

1 solution

Try backing up and restoring the database instead of attaching the MDF file.

Also SQL server MDF files might not be backward compatible unless you have run the following :
SQL
----SQL Server 2005 database compatible level to SQL Server 2000
EXEC sp_dbcmptlevel dbname, 80;
GO
----SQL Server 2000 database compatible level to SQL Server 2005
EXEC sp_dbcmptlevel dbname, 90;
GO
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900