Im copying sql table into Oracle table using Linked server.
(Insert into LINKEDSERVER..USER.TABLE
select * from SQLTABLE)
If im not setting the XACT_ABORT to ON and put "begin transaction" then I cannot do the insert, getting the "error 7392: Could not start a transaction...."
The problem is that im Doing that insert from VB code using ADO and MTS, so i cannot set this parameter.
WHAT CAN I DO ?????
(Insert into LINKEDSERVER..USER.TABLE
select * from SQLTABLE)
If im not setting the XACT_ABORT to ON and put "begin transaction" then I cannot do the insert, getting the "error 7392: Could not start a transaction...."
The problem is that im Doing that insert from VB code using ADO and MTS, so i cannot set this parameter.
WHAT CAN I DO ?????