Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> export to XML file - poor performance

export to XML file - poor performance

From: <stefan.dyakov_at_gmail.com>
Date: 21 Jun 2006 11:51:39 -0700
Message-ID: <1150915899.727262.85010@b68g2000cwa.googlegroups.com>


Hi all,
I'm trying to create PL/SQL procedure which will export data to xml file.

the result structure should look like this

order

On first stage I export the data to 2 temporary tables, and on second I loop from the data and create the output file concatenating the values for each row.

The procedure runs very slow. If i run it over 300 rowsit takes about 3 minutes.
5 seconds for filling the temp tables and all the the rest for looping trought the results and concatenating the text.

if i try to run on a real data (about 22 000 rows) it can't finish at all. the temporary tablespace just grows up to the disk free space and the system hangs.

Any suggestions about improving the performance?


The xml document is CLOB and the add_node just returns the value enclosed in tags.

   FOR order_rec IN get_orders_from_temp_table     LOOP
      v_row := '<order>' || add_node(order_rec.pon, 'pon') || add_node(order_rec.ver, 'ver') || add_node(order_rec.verid, 'verid') || add_node(order_rec.div, 'div') || add_node(order_rec.status, 'status') ||..... '</order>' || CHR(10);

      xmldoc := xmldoc || v_row;
    END LOOP; Received on Wed Jun 21 2006 - 13:51:39 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US