I´m using Oracle 11gR2, can someone tell me why the temporary lob isn´t freed?

    ... 
    -- Apply stylesheet to DOM document
    outdomdocf := dbms_xslprocessor.processxsl(proc, xsl, indomdoc);
    outnode := dbms_xmldom.makenode(outdomdocf);

    -- Write the transformed output to the CLOB
    dbms_lob.createTemporary(outfile, true, DBMS_LOB.CALL);
    dbms_xmldom.writetoCLOB(outnode, outfile);

    -- Free Cursors
    outXML := XMLTYPE.createXml(outfile);
    dbms_lob.freeTemporary(outfile);            <-- not working
    ...

When I do

select * from v$temporary_lobs;

It´s still there.

有帮助吗?

解决方案

you need DBMS_LOB.CLOSE() to close it before calling DBMS_LOB.FREETEMPORARY() .

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top