I'm trying to connect to an MDF. I've even gone to the lengths of re-installing sql server express entirely (it is now the only flavor of SQL installed on my box, where previously I had 05 dev and express). I've verified that the paths are all correct, and thus far my google-fu hasn't helped.

The Full exception message is: Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance. The connection will be closed.

The Connection string is: <add name="CustomerEntities" connectionString="metadata=res://*/Data.CustomerModel.csdl|res://*/Data.CustomerModel.ssdl|res://*/Data.CustomerModel.msl; provider=System.Data.SqlClient; provider connection string='Data Source=.\SQLEXPRESS; AttachDbFilename=\App_Data\CustomerDb.mdf; Integrated Security=True; User Instance=True'" providerName="System.Data.EntityClient" />

Thanks in advance for any insight you might be able to provide :-)

additional info: several of the references to this error I've found online do not apply to me. For example, one I've seen is where this error occurs when trying to start the user instance over remote desktop (I'm doing this locally). While another suggests that it has to do with leftover files from an old express installation ... I've looked in the prescribed locations and not found those artifacts. I also tried running sp_configure 'user instances enabled', '1', but it said that it was already set to 1.

link|improve this question

feedback

4 Answers

up vote 40 down vote accepted

ok, it works now! guess it was a compound problem ... the steps I took to resolve it are as such:

  1. Changed the following property in the connection string (note the subtle difference): AttachDbFilename=|DataDirectory|CustomerDb.mdf;
  2. Deleted the contents of the following directory: c:\Users\<user name>\AppData\Local\Microsoft\Microsoft SQL Server Data\SQLEXPRESS. I thought I had looked for this before, but I had actually looked in the Microsoft Sql Server folder. Again, a subtle difference.

Once I did these two things, the connection started working :-D

link|improve this answer
2  
Number 2 fixed it for me. – Richard Nov 15 '09 at 17:05
2nd part did the trick! – Eric P Nov 28 '09 at 3:13
Part two worked for me, too. Thanks! – pettys Apr 21 '10 at 13:18
1  
Unbelievable, Stackoverflow wins once again. Part 2 worked for me. – Scott Ferguson Mar 6 '11 at 5:31
1  
Superawesome. That did the trick for me as well! I searched for several articles and somehow they all got the path wrong. The important part is the AppData in your user folder. Thanks for saving me from going crazy! – gyurisc Mar 25 '11 at 8:09
show 3 more comments
feedback

Here is the exact step-by-step tutorial showing how to fix this error:

Fix error "Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance."

link|improve this answer
That article you linked to fixed it! I spent all day troubleshooting that error. I was going crazy. Thanks. – Brian Bolton Aug 17 '09 at 3:16
This worked for me too. Thank you. – Cymen Jul 13 '10 at 22:34
feedback

In addition to the other solutions here, this one may also be helpful. Ensure the Application Pool is running as network service, and not ApplicationPoolIdentity.

This solution was found here: http://blogs.msdn.com/b/webdevelopertips/archive/2010/05/06/tip-106-did-you-know-how-to-create-the-aspnetdb-mdf-file.aspx

link|improve this answer
feedback

Have you tried to connect to the SQL Server instance by using SQL Management Studio?

If this also doesn't allow you to connect then it could be because the SQL service is not starting correctly.

Verify that the service is running by checking the services in the control panel.

link|improve this answer
yes, I did verify that it is running :-) – Joel Martinez Nov 11 '08 at 17:19
feedback

Your Answer

 
or
required, but never shown

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