I use Distributed queries and updating record in the DB2 database using sql server through addlinkedserver , it working fine when scope of the transaction not use in the query, can any one solve how to use distributed query
BEGIN TRANSACTION;
update [linkedservername].[database].[schema].[tablename]
set DT_OF_BIRTH='1947-04-10',TEL_OFFICE='3353322'
COMMIT TRANSACTION;
Error Msg 7390
The requested operation could not be performed because OLE DB provider "DB2OLEDB" for linked server "linkedservername" does not support the required transaction interface.
Regards
Mubashir