After installing Visual Studio 2017, I cannot debug SQL Server Management Studio (SSMS)

After installing VS2017, I cannot debug queries in SQL Server Management Studio 2012 (SSMS). I keep getting the error:

Unable to start program 'MSSQL :: // YOUR_SERVER / YOUR_DATABASE / sys / = 0'

Incorrect installation of the Visual Studio DLL, coloader80.dll. Repair your Visual Studio installation via Add or Remove Programs in Control Panel.

If persis problem, you can manually register coloader80.dll from command line with parameter "regsvr32"% CommonProgramFiles% \ Microsoft Shared \ VS7Debug \ coloader80.dll '

+3


source to share


1 answer


From: Developer Community . To fix this problem, you can:

Open a command prompt with administrator rights and run the following command:

reg add HKEY_CLASSES_ROOT\TypeLib{6A1A7D39-8449-4287-8EF0-CE256582C940}\8.0\0\win32 /t REG_SZ /d "C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\coloader80.tlb"

      



Alternatively, you can do:

regsvr32 "C:\Program Files (x86)\Common Files\Microsoft Shared\VS7Debug\coloader80.dll"

      

Correct registration will be included in future versions of Visual Studio.

+5


source







All Articles