SQL Server Native Client 10.0 is not supported in your current installation-Collection of common programming errors
msdnWe have been running an interface on a server using 32bit sql native client. Trying to move to a new server which has 64 bit and SQL Server Native Client 10.0 installed. When the app runs now, the following error msg is received:
“SQL Server Native Client 10.0 is not supported in your current installation” .
Is this something we need to change in the app? Does the server we arereading FROM have to have SQL Server Native Client 10.0 also? Are there some kind of setting on the new server that need to be update? Any other things to look at?
Any help would be appreciated!
thanks!
msdn1Hello rexp64,
The application is 32-bit, and it used the 32-bit SQL Native client even when they are on 64-bit server. However, it is possible that the 64-bit server only provided 64-bit SQL Server Native Client 10.0, instead of 32-bit. Therefore, the application cannot use the matched SQL Server native client component.
Please ensure that SQL Server Native Client 10.0 (x86) is installed properly through the following steps.
- Go to the folder c:\Windows\SysWOW64\, and launch the application odbcad32.exe.
- Click “Drivers” tab and find “SQL Server Native Client 10.0” in the list. If you cannot find it, that means, this component is not installed properly.
If the driver is not installed, please try to download and install it from http://www.microsoft.com/en-us/download/details.aspx?id=29065
If you still have problem, please tell us freely.
Regards,
Edward
msdn2Hello rexp64,
The application is 32-bit, and it used the 32-bit SQL Native client even when they are on 64-bit server. However, it is possible that the 64-bit server only provided 64-bit SQL Server Native Client 10.0, instead of 32-bit. Therefore, the application cannot use the matched SQL Server native client component.
Please ensure that SQL Server Native Client 10.0 (x86) is installed properly through the following steps.
- Go to the folder c:\Windows\SysWOW64\, and launch the application odbcad32.exe.
- Click “Drivers” tab and find “SQL Server Native Client 10.0” in the list. If you cannot find it, that means, this component is not installed properly.
If the driver is not installed, please try to download and install it from http://www.microsoft.com/en-us/download/details.aspx?id=29065
If you still have problem, please tell us freely.
Regards,
Edward