Aug 04 2021 12:24 PM
I'm trying to use a third-party app to create a new database in one of my SQL Server instances and receive an error stating that it can't find assembly 'Microsoft.SqlServer.ConnectionInfo'. I can find directories named 'Microsoft.SqlServer.ConnectionInfo' in numerous places but the app can't seem to find it. Any ideas?
2 SQL Server instances installed (one already there that came with the machine and Windows 10, and the other installed with the community addition of SQL Server 2019).
SQL Server browser agent, SQL Server Agent and SQL Server processes all running.
Hide instance property of instance is set to NO.
Installed components of SQL Server community 2019:
* Database Engine Services
* Client Tools Connectivity
* Client Tools Backwards Compatibility
* Client Tools SDK
* SQL Client Connectivitiy SDK
Installed components of Visual Studio Community 2019:
* ASP.NET and web development
* .NET desktop development
* Desktop development with C++
* Universal Windows Platform development
Thanx!
Aug 04 2021 10:59 PM
it can't find assembly 'Microsoft.SqlServer.ConnectionInfo'.
@John_Carter56 , that's a .NET assembly and has nothing to do with ODBC.
It comes with SMO = Shared Management Objects and should be best installed in GAC.
Latest download I know is Microsoft® SQL Server® 2016 Service Pack 2 Feature Pack => ENU\x64\SharedManagementObjects.msi
Aug 05 2021 11:05 AM
@olafhelper Thanx for your reply.
You are correct that Microsoft.SqlServer.ConnectionInfo has nothing to do with ODBC.
I'm pretty sure I've got the SMO installed as I find Microsoft.SqlServer.ConnectionInfo.dll in a number of directories including the following:
* c:\windows\assembly\GAC_MSIL
* c:\windows Microsoft.NET\assembly\GAC_MSIL
* c:\Program Files (x86)\Microsoft SQL Server\110\SDK\Assemblies
I guess the app I'm using can't find the assembly so what can I do to set the environment so that it can find that assembly? Since it is a DLL, is it a PATH thing or something else?
Aug 05 2021 11:48 PM
Aug 06 2021 01:56 PM
Solution@olafhelper Thanx. In my case, I had to download the correct version (in this case, SQL Server 2014 Feature Pack) of the Shared Management Objects (SharedManagementObjects.msi) and SQL system CLR types (SQLSysClrTypes.msi).
Aug 06 2021 01:56 PM
Solution@olafhelper Thanx. In my case, I had to download the correct version (in this case, SQL Server 2014 Feature Pack) of the Shared Management Objects (SharedManagementObjects.msi) and SQL system CLR types (SQLSysClrTypes.msi).