Click Here To Get Amazing Facebook Profile Covers,Status Messages

How to enable user instance in SQL Server

1 reply [Last post]
screwu's picture
screwu
User offline. Last seen 2 years 33 weeks ago. Offline
Joined: 10/02/2009

I was facing a problem with my SQL server, message was like this
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
I searched for solutions and was able to find that this can be done by enabling user instance in SQL server.How can we enable user instance in SQL server.


perfect_storm's picture
perfect_storm
User offline. Last seen 2 years 9 weeks ago. Offline
Joined: 08/22/2009
enable user instance using sp_configure

in order to enable user instance in SQL server, Simply go to query window and run the following query

exec sp_configure 'user instances enabled', 1.
Go
Reconfigure

dont forget to restart your SQL server after running this query