Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

updating a linked Informix server in 2005 64bit

Status
Not open for further replies.
Oct 17, 2006
227
I have version 3.00 with the dll registered.

I can

SELECT FROM OPENQUERY (CERP, 'select * from wf_caldate where caldate = 1010101') which will return one row

However if I try to do a simple update

UPDATE OPENQUERY (CERP, 'select * from wf_caldate where caldate = 1010101')
SET day = 'Tue'

I get The requested operation could not be performed because OLE DB provider "Ifxoledbc" for linked server "CERP" does not support the required transaction interface.

On the off chance I then tried to do it via OPENROWSET but


SELECT a.*
FROM OPENROWSET('Ifxoledbc', 'Server=jvert07;Trusted_Connection=yes;',
'SELECT * from wf_caldate') AS a;

The OLE DB provider "Ifxoledbc" for linked server "(null)" reported an error. The provider did not give any information about the error.

can anyone help!!






 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top