Reputation: 4787
I'm trying to access NetSuite's
data from SQL Server as the NetSuite reporting by itself isn't enough. For doing so, I installed the NetSuite ODBC adapter
on the server and tried creating a linked server
connection from SQL Server
in order to be able to access data from NetSuite
.
The problem that I'm facing now is that the NetSuite Adapter
isn't available in the list of linked server
connections.
Would anyone please be able to let me know how to configure the NetSuite adapter
so that the data may be imported in SQL Server
using SQL queries?
Upvotes: 1
Views: 4325
Reputation: 3287
After installing the ODBC driver for NetSuite, verify that you have a System DSN correctly configured (this should be created for you as part of the install):
When creating your linked server from SSMS:
Also make sure that you're installing ODBC drivers for the same architecture as your SQL server installation (i.e., 64-bit vs 32-bit)
Upvotes: 2