ORA-02047 [message #54644] |
Mon, 25 November 2002 09:19 |
rena
Messages: 8 Registered: November 2002
|
Junior Member |
|
|
Hi,
I have used generic connectivity to conenct an Oracle and an MS Access database.
I have also created a trigger as follows:
CREATE OR REPLACE TRIGGER customer_increase AFTER INSERT ON CUSTOMER BEGIN INSERT INTO CUSTOMER@MYDB.WORLD VALUES(1,'ss','ss','ss',9); END;
but when i test it :
INSERT INTO CUSTOMER VALUES(1,'dd','dd','dd',8);
I am getting the errors:
ORA-02047: cannot join the distributed transaction in progress
ORA-06512: at "KARDITSI.CUSTOMER_INCREASE", line 1
ORA-04088: error during execution of trigger 'KARDITSI.CUSTOMER_INCREASE'
Does anyone know which is the error?
Thanks in advance
Maria
|
|
|
|
|