Hi,
I have a problem loading data via Php into Oracle: the Php web page open an xml file, create a .csv and then Oracle starts using an external table to process data.
The problem is that, the second time Php tries to execute the following query:
INSERT INTO table1 T (field1, field2, field3, field4, field5, field6) VALUES ('aaa1E63819707', SYSDATE, 'KO', 'error', 'L', 'file_name.xml') RETURNING field1 INTO :id
on Oracle sessions I have a Row Exclusive lock on table1 and the wait SQL*Net more data from client.
Where is the problem?!?
Thanks,
Igor