Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do some excercises from exam 70-515. Unfortunately I fail while trying to attach Northwind to a grid-control. It would result in: NORTHWND.MDF' cannot be opened because it is version 655. This server supports version 612 and earlier. A downgrade path is not supported.

I use Windows 7 Home and MS Visual Web Developer 2010 Express. As fas as I understand this error, SQL Express must be an old version on my system. I downloaded and installed SQL Express 2008r2 from here. No effect. From other sources I figured out that I might need to change the instance name: Tools -> Options -> Database Tools -> Data Connections -> SQL Server Instance Name. There it is written SQLEXPRESS. I don't know what else I should insert there?

share|improve this question
From a quick google it would seem that you are connecting to a 2005 instance not a 2008 instance I think? – Martin Smith Mar 4 '11 at 12:44
Yes - but how can I tell Visual Studio to connect with the 2008 instance which I installed? – sl3dg3 Mar 4 '11 at 12:46
I try this one. still got the same error – Prince Antony G Jun 23 '12 at 7:25

4 Answers

up vote 4 down vote accepted

Turns out that deinstalling SQL Express and reinstall the latest version fixed the problem. I chose SQLSERVER2008 as Instance-Name while installing and set it in Visual Studio as described above.

share|improve this answer
I try this one. still got the same error. Please help to solve – Prince Antony G Jun 23 '12 at 7:25

Go to the Services control panel and look for a service named SQL Server (XXX) -- that XXX is the name of the instance that service is running. You just have to find the 2008R2 instance that you installed and type that into the "SQL Server Instance Name" box.

share|improve this answer
Hmm I already did. I can only find SQL Server (SQLEXPRESS). Maybe I shoud deinstall Sql-Express and reinstall it completely? I'll give it a try... – sl3dg3 Mar 4 '11 at 12:56

Go to Tools>Options>Data Connections, provided you have installed SQL Server Express 2008r2, leave the SQL Server instance name blank.

share|improve this answer
There is no instance name field per se, so "leave it blank" would sound quite foreign to a novice. – RichardTheKiwi Oct 1 '12 at 6:31

This happens when you are trying to use the SQLServer Express to connect to the MDF file. To remedy this issue, you need to go to Services.msc and turn on SQL Server services. You need to set the log on properties and when the service is started, you will be able to connect to the MDF file without any issues.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.