To improve performance, use OPENQUERY instead so transalation will no longer be necessary for the Microsoft OLEDB provider.
A sample query can be found below:
SELECT TRANSACTION_ID FROM OPENQUERY(NETSUITE, 'SELECT TRANSACTION_ID FROM TRANSACTION_LINES');
You can find further details regarding OPENQUERY in MSDN (http://msdn.microsoft.com/en-us/library/ms188427.aspx)
Thanks, the performance is much better
ReplyDelete