I am very new in sql server. I downloaded sql server express 2012. I then downloaded adventureworks sample database. I used the following command to attach the database:
CREATEDATABASE AdventureWorks2012 ON (FILENAME = 'M:\Data\AdventureWorks2012_Data.mdf'), (FILENAME = 'L:\Tlogs\AdventureWorks2012_Log.ldf') FOR ATTACH;
When I execute, I get an error stating that the database is in version 655 and the server only supports version 612 or earlier.
I then execute @@Version. When I do this, I receive a notice stating that I have sql server 2005.
Can you tell me what is happening and what steps I should take.
Larry
l2n