Anytime I insert into my table the insert runs fine, as expected.
I select select * from...
from the table and it hangs forcing me to terminate the query, but only when my xml_file column is populated, if it isn't then it returns the results and stops executing.
If xml_file is populated <value_error>
is present in both the xml_file and extract_file columns, whereas if it isn't <CLOB>
is present in the extract_file column with the value present and also in the xml_file column with no values
Table:
ID VARCHAR2(6),
VERSION NUMBER(3),
XML_FILE PUBLIC.XMLTYPE,
MODIFIED_DATE DATE,
MODIFIED_BY VARCHAR2(50),
REVISION VARCHAR2(50),
EXTRACT_FILE CLOB
We can see the values in sqlplus so they're being inserted correctly but PL/sql can't seem to view it. This was working a few weeks ago but since then we have moved from windows xp to 7 and with this upgrade came an upgraded pl/sql (version 7.1.1.1339)
. Not sure why this would cause the problems, any ideas?