Hi all,
I have an oracle table which has a column that stores XML in a CLOB format. I have the following query:
SELECT VALUE(p)
FROM XMLTABLE T,
TABLE(XMLSEQUENCE(EXTRACT(XMLTYPE(XML_COLUMN), '/myxml/*'))) p
WHERE T.id=1000
This works fine with SQL Plus but when I tried the same on PL/SQL developer, I'm getting an OCI-21500 error.I'm using version 7.0.2. Please let me know what is causing this error.
Thanks,
Vinu
I have an oracle table which has a column that stores XML in a CLOB format. I have the following query:
SELECT VALUE(p)
FROM XMLTABLE T,
TABLE(XMLSEQUENCE(EXTRACT(XMLTYPE(XML_COLUMN), '/myxml/*'))) p
WHERE T.id=1000
This works fine with SQL Plus but when I tried the same on PL/SQL developer, I'm getting an OCI-21500 error.I'm using version 7.0.2. Please let me know what is causing this error.
Thanks,
Vinu