whip
Member²
The following query makes the SQL Window hang:
SELECT xmlelement("a", dummy)
FROM dual;
The result grid contains , the query seems to run forever and cannot be cancelled.
//
I know, the correct way to do this in PLSQL Developer is
SELECT xmlelement("a", dummy).getclobval()
FROM dual;
//
SELECT xmlelement("a", dummy)
FROM dual;
The result grid contains , the query seems to run forever and cannot be cancelled.
//
I know, the correct way to do this in PLSQL Developer is
SELECT xmlelement("a", dummy).getclobval()
FROM dual;
//