Use the Windows Salesforce ODBC driver.
Note If you want to use the linked server in a clustered environment, you need to install the ODBC driver on each node in the cluster.
For installation instructions, refer to the Salesforce ODBC driver documentation.
Before you can use the Salesforce ODBC driver to connect SQL Server to Salesforce, you need to configure an ODBC data source. An ODBC data source stores the connection details for the target database (in this case, Salesforce) and the ODBC driver that is required to connect to it (in this case, the Salesforce ODBC driver).
Note If you want to use the linked server in a clustered environment, you need to configure the data source on each node in the cluster.
You can configure a user ODBC data source, which is only available to the user who creates it, or a system ODBC data source, which is available to all users on the machine. You configure ODBC data sources in ODBC Data Source Administrator, which is included with Windows.
There are two versions of ODBC Data Source Administrator. The version of ODBC Data Source Administrator that you need to run depends on whether you have a 32-bit or a 64-bit version of SQL Server. To find out which version of SQL Server you have, connect to your SQL Server instance, and then run this SQL statement:
select SERVERPROPERTY('edition')
If you have the 64-bit version of SQL Server and want to use a linked server with the Salesforce ODBC driver, you need to run the 64-bit version of ODBC Data Source Administrator. To do this, in the Windows Run dialog box, type:
odbcad32.exe
If you have the 32-bit version of SQL Server or want to use SSIS with the Salesforce ODBC driver, you need to run the 32-bit version of ODBC Data Source Administrator. To do this, in the Windows Run dialog box, type:
%windir%\syswow64\odbcad32.exe
Use ODBC Data Source Administrator to create your Salesforce ODBC driver data source:
Important This will only succeed if the SQL Server instance is running under the same user account as the one used to create the data source. Otherwise, you must create a System ODBC data source instead.
–Or–
Easysoft ODBC-Salesforce Driver
, and then choose Finish.Setting | Value |
---|---|
DSN | Salesforce |
User Name | The name of your Salesforce user. For example, myuser@mydomain.com . |
Password | The password for your Salesforce user. |
Token |
The security token for your Salesforce user, if required.
To find out whether you need to supply a security token, choose the Test button. If the connection attempt fails with an error which contains Salesforce emails the security token to the email address associated with your Salesforce user account. If you have not received a security token, you can regenerate it. Salesforce will then email the new security token to you. To regenerate your security token, log in to Salesforce and then choose Setup from the user menu. Search for "security token" in the Quick Find box. Choose Reset Security Token in the Reset Security Token page. When you receive the token in your email client, copy it and then paste it into the Token field. |
You can now connect SQL Server to Salesforce.
You need to log on with an account that is a member of the SQL Server sysadmin
fixed server role to create a linked server.
SQL Server verifies the linked server by testing the connection.
Path
environment variable. The Salesforce ODBC driver Setup program adds entries for the driver to the System Path
. Restarting the instance makes these changes available to SQL Server, allowing it to load the Salesforce ODBC driver.A four part table name has the format:
server_name.[database_name].[schema_name].table_name.
Even though with Salesforce there is no database or schema, the Easysoft ODBC-Salesforce Driver returns a "dummy" value for both identifiers, because some ODBC applications expect there to be a database and a schema. The database that the driver returns is SF
. The schema that the driver returns is DBO
. Include these identifiers in your SQL statements. For example:
SELECT * FROM SALESFORCE.SF.DBO.Account
The capitalisation of the table name must be the same as it is in Salesforce. For example, the following query is invalid:
SELECT * FROM SALESFORCE.SF.DBO.ACCOUNT
To check the capitalisation of the Salesforce tables (objects), run:
EXEC sp_tables_ex @table_server = 'SALESFORCE'
OPENQUERY
function. For example:
SELECT * FROM OPENQUERY(SALESFORCE, 'SELECT * FROM ACCOUNT')
SQL Server sends pass-through queries as uninterpreted query strings to the Salesforce ODBC driver. This means that SQL Server does not apply any kind of logic to the query or try to estimate what that query will do.
OPENDATASOURCE
and OPENROWSET
The OPENDATASOURCE
and OPENROWSET
functions enable you to work with Salesforce data in SQL Server without configuring a linked server. There are some security implications associated with their use and these functions are therefore not enabled by default.
OPENDATASOURCE
and OPENROWSET
functions:
EXEC sp_configure 'show advanced options', 1 RECONFIGURE GO EXEC sp_configure 'ad hoc distributed queries', 1 RECONFIGURE GO
SELECT * FROM OPENDATASOURCE('MSDASQL', 'DSN=MY_SALESFORCE_ODBC_DATA_SOURCE;') .SF.DBO.Account
–Or–
SELECT * FROM OPENROWSET('MSDASQL', 'DSN=MY_SALESFORCE_ODBC_DATA_SOURCE;', 'select * from Account;')
This command creates a copy of the Account table, it assumes the linked server is named SALESFORCE
.
IF OBJECT_ID('dbo.Account', 'U') IS NOT NULL DROP TABLE dbo.Account; SELECT * INTO Account FROM OPENQUERY(SALESFORCE,'SELECT * FROM Account')
These instructions assume that you have Microsoft Visual Studio and SQL Server Data Tools for Visual Studio installed.
.csv
file named product.csv
with the following contents:
Name,Description,Family Easysoft ODBC-Salesforce Driver,"ODBC driver for Salesforce, Force.com, Database.com",Easysoft Data Access Easysoft ODBC-SQL Server Driver,"ODBC driver for SQL Server, SQL Azure",Easysoft Data Access
Flat File Source is under the Other Sources list.
.csv
file."
.ODBC Destination is in the Other Destinations list.
Product2
.Your Input and Destination columns should look like this:
Input Column | Destination Column |
---|---|
Name | Name |
<ignore> | ProductCode |
Description | Description |
<ignore> | IsActive |
<ignore> | CreatedDate |
<ignore> | CreatedById |
<ignore> | LastModifiedDate |
<ignore> | LastModifiedById |
<ignore> | SystemModstamp |
Family | Family |
.csv
file into Salesforce.sp_columns_ex
INSERT INTO
from SQL Server to change Salesforce data