I am using UPDATE OPENQUERY for a DB2 I Series Linked Server to a SQL Server 2012 instance.
Some DB2 tables are faster using the IBMDA400 driver and some DB2 tables are faster using the IBMDASQL driver.
Has anyone ever encountered this problem before.
All code is similar to the following:
UPDATE OPENQUERY(DB2, 'SELECT col1, col2 FROM schema.table WHERE A_TYPE = ''N'' ')
SET A_TYPE = 'Y'
Thank you