Recently tried to attach a new database fle "abc.mdf" ,but got the following error saying
An excepton occured while executing a transact -sql statement or batch.
The database 'xxxxx' cnnot be opened because t is version 661.This server supports verson 655 and earlier.A downgrade path is not supported.
Create database aborted.
So please help me out in attaching this db file and let me know what needs to be done.

Bryian TanPosted Dec 14, 2012, 11:41 AM
It sound like you have version 655 but the mdf version is 661 (from MS SQL Server R2). There are couple of options.
- upgrade your SQL Server 2008 to SQL Server 2008 R2
- use the Generate Scripts tool to generate scripts for the database objects (abc) and run the script on your SQL server.
NOTE: You might have Microsoft SQL Server 2008 R2 Management Studio on your machine but that doesn't mean that you have Microsoft SQL Server 2008 R2Bryian TanPosted Dec 14, 2012, 1:42 PM
http://msdn.microsoft.com/en-us/library/ms178078%28v=sql.105%29.aspx
mahesh kumar B MPosted Dec 14, 2012, 1:09 PM