Unable to load SqlServerSpatial.dll
Asked Answered
S

11

33

I am trying to use the SqlServer Spatial CLR types in a C# .Net project. I want to use SqlGeometry to query spatial records out of my db.

I have this working on my local machine in a unit test running in Visual Studio 2010 hitting a remote SqlServer machine. All good.

I then publish a WCF Rest service to my local IIS instance that has a service that hits the same class library as the unit test to do some spatial querying and it fails.

I get an error saying

Unable to load DLL SqlServerSpatial.dll : The specified module could not be found.

I have googled this and found many, many answers - none work for me. I have:

  • registered the CLR types with the GAC
  • install the 64-bit, and later also, the 32-bit version of the VC++
  • tried many variations of using different Microsoft.SqlServer.Types dll versions

The only thing I have not done, and frankly refuse to do, is to install anything on the actual SqlServer box. This seems unnecessary to me.

At this point the only thing that I can think is causing this is a permissions issue because it is running in an IIS app pool and not inside Studio where it works in the unit test.

Note that in my project I NEVER make reference to the dll mentioned in the error message. That dll is present on the sql box but I can't add it to studio as it gives some message when i try to. I'm running out of things to try here. It's 90's dll hell all over again.

Sturdivant answered 10/1, 2013 at 19:34 Comment(6)
of course right after i post this i find the answer myself. In the IIS app pool i had to change 'Enable 32-bit applications' to True.Sturdivant
I got the same problem and resolved by setting "Enable 32-bit applications" t true as you said.Assemblyman
or install the x86 (32 bit) version of the CLR types DLL.Shawannashawl
Way from the future, but I found that the app pool needed to be set to allow 32bit applications if you were running in a 64bit IIS environment. Working on a rewrite on one now and couldn't get the dev site to load that assembly. That was the difference and fired right up. Tried all solutions here to no avail.Goulden
Just had the same thing happen to me but for no obvious reason - it was working, then just stopped. Changing the app pool setting to allow for 32-bit applications worked. Thank you!Scion
Importing Microsoft.SqlServer.Types.dll from C:\Program Files (x86)\Microsoft SQL Server\100\SDK\Assemblies worked for me to resolve the problem.Malcolm
M
36

I had the same problem on a Windows Server 2012 machine. It had an SqlServerSpatial110.dll file in \Windows\System32, but no SqlServerSpatial.dll. The solution was installing the Microsoft System CLR Types for SQL Server 2008 R2 on the machine.

  1. http://www.microsoft.com/en-us/download/details.aspx?id=26728
  2. Click Download
  3. Check off one of these depending on your processor architecture:

    • 1033\x64\SQLSysClrTypes.msi
    • 1033\x86\SQLSysClrTypes.msi
    • 1033\IA64\SQLSysClrTypes.msi
  4. Click Next

Modernize answered 10/2, 2013 at 11:1 Comment(7)
SQL 2012 installs this dll too, SQL 2014 don't! It installs the SqlServerSpatial120.dll version, which doesn't solve the problem.Reasoning
@Reasoning So what's the solution if we only have Sql 2014 installed? Would we have to uninstall it and install 2012 or could we install the 2012 types on top of the 2014 install?Dilatant
Install the Microsoft System CLR Types for SQL Server 2008 R2, the link is in the answerReasoning
the link is broken and I can't seem to find this download by googling. Anyone know where it can be downloaded from?Jury
If you are running an x86 process on an x64 box, then you need to get 1033\x86\SQLSysClrTypes.msi not the x64 version.Forepart
The whole idea frightens me. What's gonna be when I'm gonna have to deploy it? Am I also gonna have to eat this pain?Burnley
Just to add, installing the CLRs for 2008 did nothing to fix my issue. I had to install the CLR types 2012: microsoft.com/en-gb/download/details.aspx?id=29065Autonomy
L
30

My problem was similar to yours: I installed my ASP.NET MVC project on a remote Azure Virtual Machine and I got this exception:

"Unable to load DLL 'SqlServerSpatial110.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)" 

To solve the issue I followed these steps:

  1. I added the reference to the missing package in my project:

    PM> Install-Package Microsoft.SqlServer.Types
    
  2. Then I forced the "Copy to output directory" option to "Copy always" for the SqlServerSpatial110.dll (probably this step is not strictly required...)

  3. For ASP.NET projects, you need to add the following line of code to the Application_Start method in Global.asax.cs:

    SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~/bin"));
    

    This last step was fundamental for me, because whitout this line of code the DLL is not loaded by the web application.

Limbert answered 19/1, 2016 at 11:55 Comment(4)
Followed your instructions and it's working well. (step 2 was not necessary)Moneywort
I installed the Microsoft.SqlServer.Types package, but the type SqlServerTypes is unrecognized in my project.Burnley
A C# file is added to the project as part of the NuGet package content and it contains SqlServerTypes.Utilities. NuGet will also run an install script that copies the DLLs to useful locations but if you use Paket as a package manager, it doesn't run install scripts (as a feature) so there will be more to be done.Artieartifact
still valid in 2024 on MVC project!Hydrophane
A
8

I have been using Microsoft.SqlServer.Types.dll in WPF and ASP.NET apps to work with SqlGeometry type and spatial queries for years (since v.10) and here is the latest tips I found to successfully load the SqlServerSpatialXXX.dll as one of the prerequisites of the Microsoft.SqlServer.Types.dll.

  • SqlGeometry and SqlGeography types can be used in VS projects (e.g. C#) by referencing the Microsoft.SqlServer.Types.dll.
  • Microsoft.SqlServer.Types.dll is a managed library and has some unmanaged library as prerequisites and they are like SqlServerSpatialXXX.dll and msvcrXXX.dll
  • Since Sql Server 2008, different versions of Microsoft.SqlServer.Types.dll are available, however, I don't see any functionality change from 2012 on.

Consider 64bit/32bit issues

  • For 64 bit machanies, if you install CLR Types for Sql Server, you can find 64bit versions of these prerequisites files in Windows/System32 and also you can find 32bit versions of prerequisites files in Windows/SysWOW64 folder
  • If CLR Types are not installed on a machine, You should manually load proper versions (32bit/64bit) of these prerequisites based on your project (32bit or 64bit) otherwise you will errors like

Error Loading SqlServerSpatialXXX.dll

You can check 32bit/64bit issue at runtime in C# using Environment.Is64BitProcess. Here is a sample code:

[DllImport("kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)]
private static extern IntPtr LoadLibrary(string libname);

private static void LoadNativeAssembly(string nativeBinaryPath, string assemblyName)
{
    var path = Path.Combine(nativeBinaryPath, assemblyName);

    if (!File.Exists(path))
    {
        throw new FileNotFoundException($"{path} not found");
    }

    var ptr = LoadLibrary(path);
    if (ptr == IntPtr.Zero)
    {
        throw new Exception(string.Format(
            "Error loading {0} (ErrorCode: {1})",
            assemblyName,
            Marshal.GetLastWin32Error()));
    }          
}

public static void LoadNativeAssembliesv13(string rootApplicationPath)
{
    var nativeBinaryPath = Environment.Is64BitProcess
    ? Path.Combine(rootApplicationPath, @"SqlServerTypes\x64\")
    : Path.Combine(rootApplicationPath, @"SqlServerTypes\x86\");

    LoadNativeAssembly(nativeBinaryPath, "msvcr120.dll");
    LoadNativeAssembly(nativeBinaryPath, "SqlServerSpatial130.dll");
}

Consider binary path in different project types It is recommended to have a folder named SqlServerTypes in the execution path of your project like this

SqlServerTypes>x64

SqlServerTypes>x32

and load unmanaged assemblies like this

Utilities.LoadNativeAssembliesv13(Environment.CurrentDirectory); //WPF
Utilities.LoadNativeAssembliesv13(HttpRuntime.BinDirectory); //ASP.NET 

Issues when using ADO.NET to read SqlGeometry from Sql Server Despite which version of Microsoft.SqlServer.Types.dll you are using, if you try to read them from Sql Server using ADO.NET you may encounter a cast exception because SQL Client will by default load version 10.0.0.0 of Microsoft.SqlServer.Types.dll. In this case some years ago I tried WKB (approach 1 and 2) and WKT as a medium to convert between SqlGeometry type for different version of Microsoft.SqlServer.Types.dll and found WKB is about 10 times faster but some month ago I found using assembly redirection we can force the program to load the version we are using and using a simple cast we can get the SqlGeometry (approach 3)

private List<SqlGeometry> SelectGeometries(string connectionString)
{
    SqlConnection connection = new SqlConnection(connectionString);
    var command = new SqlCommand(select shapeCol from MyTable, connection);
    connection.Open();
    List<SqlGeometry> geometries = new List<SqlGeometry>();
    SqlDataReader reader = command.ExecuteReader();
    if (!reader.HasRows)
    {
        return new List<SqlGeometry>();
    }
    while (reader.Read())
    {
        //approach 1: using WKB. 4100-4200 ms for hundred thousands of records
        //geometries.Add(SqlGeometry.STGeomFromWKB(new System.Data.SqlTypes.SqlBytes((byte[])reader[0]), srid).MakeValid());
        //approach 2: using WKB. 3220 ms for hundred thousands of records
        //geometries.Add(SqlGeometry.Deserialize(reader.GetSqlBytes(0))); 
        //approach 3: exception occur if you forget proper assembly redirection. 2565 ms for hundred thousands of records
        geometries.Add((SqlGeometry)reader[0]);
    }
    connection.Close();
    return geometries;
}
Antoninus answered 30/11, 2016 at 5:9 Comment(1)
Can you please include the implementation of LoadNativeAssembly in your answer?Burnley
P
4

I was having issues on a Windows Server 2008 R2 machine (Azure VM), but none of the steps above were able to fix the issue. I installed the CLR types. I put the files in my web application's BIN folder. Still nothing. I finally came across this blog by the folks at Microsoft and it worked. I'm leaving the url here in case it can help anyone else.

http://blogs.msdn.com/b/adonet/archive/2013/12/09/microsoft-sqlserver-types-nuget-package-spatial-on-azure.aspx

I've put instructions below:

  1. Open Visual Studio and open the NuGet Package Manager
  2. Search for "Microsoft.SqlServer.Types"
  3. Install...

This package will install the necessary .DLLs into your solution/project. It will also copy some additional libraries directly into your /bin directory. You must wire up references to these additional libraries in your global.asax.cs/vb file. There are instructions on how to do this included in the NuGet package. Below is a direct link to the NuGet Package (hopefully MSFT doesn't move this into oblivion too).

https://www.nuget.org/packages/Microsoft.SqlServer.Types/

Panta answered 28/8, 2014 at 17:57 Comment(2)
Please do not simply post URLs, this particular blog post no longer exists. It would have been mighty helpful if you posted a summary or a copy of the content from the original blog. Still reference it for sure, but if it is an external site (not SO) then you cannot guarantee it will remain online indefinitely.Manufacturer
@ChrisSchaller Done. Cheers!Panta
R
4

Despite having SQL Server 14.x installed, VS kept insisting SqlServerSpatial110.dll was not found.

Installing Microsoft System CLR Types for SQL Server 2008 R2 did not fix it. I also tried to install the 10.5 version of Microsoft.SqlServer.Types, but received a PInvoke error about the method signature not matching.

So instead, I installed Microsoft.SqlServer.Types 14.x, then renamed the SqlServerSpatial140.dll file to SqlServerSpatial110.dll in both /x86 and /x64 folders and did the same in Loader.cs. For whatever reason, that seemed to do the trick.

Rhoda answered 11/3, 2018 at 6:10 Comment(2)
In addition to installing via NuGet the Microsoft.SqlServer.Types library, I found you also need add a bindingredirect for the library instead of renaming the DLL. ` <dependentAssembly> <assemblyIdentity name="Microsoft.SqlServer.Types" publicKeyToken="89845dcd8080cc91" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-14.0.0.0" newVersion="14.0.0.0" /> </dependentAssembly> `Sulphate
That's a much better way to do it. Thanks for sharingRhoda
R
3

I had an old (2009) asp.net webform vb.net project that gave me this error on another server. I had to add this runtime to the web.config :

<configuration>
  <runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="Microsoft.SqlServer.Types" publicKeyToken="89845dcd8080cc91" />
        <bindingRedirect oldVersion="1.0.0.0-11.0.0.0" newVersion="10.0.0.0" />
      </dependentAssembly>
    </assemblyBinding>
  </runtime>
</configuration>

http://biandintegration.blogspot.com/2017/12/solved-unable-to-load-dll.html

Retroversion answered 21/6, 2019 at 18:44 Comment(0)
D
2

I had the same issue in godaddy VPS with windows server 2012 r2

I Resolved it by Updating my EF5 to EF6

in package manager console run to EF5 to EF lalest

Install-Package EntityFramework 
Domiciliary answered 16/12, 2017 at 17:55 Comment(0)
R
2

I've been having a similar issue on an ASP.NET MVC 5 project. A while back I had to add a line to specify the Assembly name like so:

SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~/bin"));
SqlProviderServices.SqlServerTypesAssemblyName = Assembly.GetAssembly(typeof(Microsoft.SqlServer.Types.SqlGeography)).FullName;

I recently deployed to a new test server and got this error again. It was trying to load version 12 for some reason. I now specify the exact version I want and it works as expected.

SqlServerTypes.Utilities.LoadNativeAssemblies(Server.MapPath("~/bin"));
SqlProviderServices.SqlServerTypesAssemblyName = "Microsoft.SqlServer.Types, Version=14.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91";

Hope this helps someone.

Retorsion answered 19/3, 2019 at 14:26 Comment(1)
Wow, weird af. A solution of ours is working fine on all development machines except my laptop and we had the first line but not the SqlProviderServices.SqlServerTypesAssemblyName line, fixed after adding that.Pituri
L
1

Remove the Microsoft.SqlServer.Types.dll from References and use Nuget to instal. Check your version before install. The assemblies to x86 and x64 will be installed in the project.

Lounge answered 17/6, 2017 at 3:17 Comment(2)
Check it codeproject.com/Questions/833069/…Lounge
The nuget package worked for me. Just had to make sure to remove references to the DLL in the csproj. Also with an older version of LLBL I had to use version 10 of the nuget package.Savitt
T
0

Here is what was causing this issue for me:-

There is a folder named SQLServerTypes in my project and when I looked inside the folder I found out that the .dll was actually missing. So downloading the .dll and pasting it inside the SQLServerTypes folder fixed the issue for me.

The issue was happening for me when I was trying to build my application.

Trauner answered 9/3, 2020 at 16:7 Comment(0)
H
0

just install Microsoft.SqlServer.Types with nuget

Hydrolyte answered 26/8, 2023 at 9:41 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.