Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><a href="http://aspdotnetfaq.com/Faq/fix-error-Failed-to-generate-a-user-instance-of-SQL-Server-due-to-a-failure-in-starting-the-process-for-the-user-instance.aspx" rel="nofollow">Fix error "Failed to generate a user instance of SQL Server due to a failure in starting the process for the user instance."</a> </p> <p>Content from link pasted and altered below in case reference site is removed in the future:</p> <p><strong>Step 1.</strong> </p> <p>Enabling User Instances on your SQL Server installation First we are gonna make sure we have enabled User Instances for SQL Server installation.</p> <p>Go to Query Window in SQL Server Management Studio and type this:</p> <pre><code>exec sp_configure 'user instances enabled', 1. Go Reconfigure </code></pre> <p>Run this query and then restart the SQL Server.</p> <p><strong>Step 2.</strong> </p> <p>Deleting old files Now we need to delete any old User Instances. Go to your C drive and find and completely DELETE this path (and all files inside):</p> <p>C:\Documents and Settings\ <strong>YOUR_USERNAME</strong> \Local Settings\Application Data\Microsoft\Microsoft SQL Server Data\SQLEXPRESS</p> <p>(Dont forget to replace the bold text in the path with your current username (if you are not sure just go to C:\Documents and Settings\ path to figure it out).</p> <p>After deleting this dir you can go to Visual Studio, create ASP.NET WebSite and click on your App_Data folder and choose Add New Item and then choose SQL Server Database and it should work!!!</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload