Missing Path to SQL Server Express User Instance, can't see all databases in SQL Server Management Tool - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:09:05Z http://stackoverflow.com/feeds/question/964452 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/964452/missing-path-to-sql-server-express-user-instance-cant-see-all-databases-in-sql 1 Missing Path to SQL Server Express User Instance, can't see all databases in SQL Server Management Tool markti 2009-06-08T11:27:46Z 2009-11-21T06:00:02Z <p>I have a WPF application deployed via ClickOnce. This application uses a SQL Server Express database. I am trying to access my user instance of the database so that I can access the database that I am currently using when debugging so that I can verify writes to the DB made by entity framework. However, when I try to open the user instance using the direct pipe name: "\.\pipe\3FCB3BEB-9ACF-4E\tsql\query". I connect fine but when I expand the "Databases" node I get the following error:</p> <blockquote> <p>TITLE: Microsoft SQL Server Management</p> <h2>Studio</h2> <p>Failed to retrieve data for this request. (Microsoft.SqlServer.Management.Sdk.Sfc)</p> <p>For help, click: <a href="http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;LinkId=20476" rel="nofollow">http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;LinkId=20476</a></p> <p>------------------------------ ADDITIONAL INFORMATION:</p> <p>An exception occurred while executing a Transact-SQL statement or batch. (Microsoft.SqlServer.ConnectionInfo)</p> <p><hr /></p> <p>Unable to open the physical file "C:\Users\mark.ti\AppData\Local\Apps\2.0\Data\RJ9HCXPL.ZWT\7VHVB97B.EB2\abcd..tion_b144089e1fe9cf01_0001.0000_b03f40a7888c1e15\Data\Resources\Data\MyDatabase.mdf". Operating system error 3: "3(The system cannot find the path specified.)". (Microsoft SQL Server, Error: 5120)</p> <p>For help, click: <a href="http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;ProdVer=09.00.4035&amp;EvtSrc=MSSQLServer&amp;EvtID=5120&amp;LinkId=20476" rel="nofollow">http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&amp;ProdVer=09.00.4035&amp;EvtSrc=MSSQLServer&amp;EvtID=5120&amp;LinkId=20476</a></p> <p>------------------------------ BUTTONS:</p> <h2>OK</h2> </blockquote> <p>The path does exist, its where the ClickOnce application was deployed to after install. After uninstalling the application, I still get this error, although, now the path truly is gone.</p> <p>I have tried re-starting my SQL Server Express service to see if that will clear our the user instances but that didn't seem to work.</p> <p>Has anybody else encountered this error when working with SQL Server Express? What is the problem here caused by? How do I reset the user instance database refereces?</p> http://stackoverflow.com/questions/964452/missing-path-to-sql-server-express-user-instance-cant-see-all-databases-in-sql/966410#966410 0 Answer by Sune Due Møller for Missing Path to SQL Server Express User Instance, can't see all databases in SQL Server Management Tool Sune Due Møller 2009-06-08T19:06:58Z 2009-06-08T19:32:05Z <p>Could be an an 'access denied error'. </p> <ol> <li>Make sure the account the SQLSERVER service is running under is member of the local windows group SQLServer2005DTSUser$[instancename]. Where [instancename] refers to the name of the SQL Server instance in question.</li> <li>Maks sure the the windows group has Modify permissions (NTFS) on the folder and the database files within this folder (files typically have .mdf and .ldf extensions).</li> <li>If still in trouble make sure the SID of the Windows group mathces the one in the registry for the current SQL Server instance:</li> </ol> <p>Go to SQL Server registry key to replace the obsolete SID with the current one. Those registry keys can be found like following example (you might need to replace \MSSQL.1\ with the one matching your instance number).</p> <p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL.1\Setup]</p> <p>The group your're looking for is: SQLGroup</p>