Discussions
Join the NetSuite community to innovate, connect, and discover what’s next.
SuiteWorld brings thousands of innovators, builders, and leaders together to learn, connect, and shape what’s next. This October, explore how to build a stronger foundation for growth through inspiring keynotes, major product reveals, hands-on sessions, and unforgettable moments—all in one place for our biggest event of the year. Register now
Connecting/Viewing Netsuite Data from within Microsoft SQL Server
Does anyone know how to connect and view the NetSuite data from within Microsoft SQL Server?
We've tried the following without success;
exec sp_addlinkedserver
@server='NETCRM',
@srvproduct='NetSuite.com',
@provider='MSDASQL',
@datasrc='NetSuite.com',
@provstr='Database=NetSuite.com; Uid=xxx@xxx.com ;Pwd=xxx'
select * from NETCRM.dbo.Administrator.tasks
The 'sp_addlinkedserver' command executes successfully but we've noticed that you can enter invalid parameters and it will accept it. The connection string above was provided by NetSuite so it's believed to be correct.
The ODBC connection has been successfully installed and tested. The data can be viewed via Excel, Perl and SQLDBX but just not through MS SQL Server.