Blog Post

SQL Server Integration Services (SSIS) Blog
1 MIN READ

Some notes about SQL Native Client in 2008

SSIS-Team's avatar
SSIS-Team
Copper Contributor
Mar 25, 2019
First published on MSDN on Mar 22, 2008

The SQL Native Client (SNAC) provider was renamed from SQLNCLI to SQLNCLI10 in 2008. The means that connection strings that used the Yukon provider (SNAC9) won't work if you only have the Katmai provider (SNAC10) installed.

This will affect most SSIS users, as we use SNAC as the default connection manager for a lot of things. To resolve this issue, you have two options:

  1. Install SNAC9 side by side with SNAC10. The redist can be found on the 2005 installation CD.
  2. Change the "Provider" portion of the connection string from "SQLNCLI.1" to "SQLNCLI10.1"

Starting in the February CTP (CTP6), SSIS can automatically update your connection strings for you.

Note, while SNAC10 is backwards compatible with SNAC9, http://msdn2.microsoft.com/en-us/library/bb964722(SQL.100).aspx .

New SSIS packages in Katmai will default to use SNAC10, but you can always switch the provider to SNAC9 if you have it installed on the machine.

http://msdn2.microsoft.com/en-us/library/cc280510(SQL.100).aspx

http://msdn2.microsoft.com/en-us/library/bb964722(SQL.100).aspx

Updated Mar 25, 2019
Version 2.0
No CommentsBe the first to comment