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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: how to monitor the progress of inserts

Re: how to monitor the progress of inserts

From: Thomas Day <tomday2_at_gmail.com>
Date: Fri, 4 Feb 2005 09:22:39 -0500
Message-ID: <a8c5045905020406224b4c8855@mail.gmail.com>


How about --
SELECT OWNER, SUM(BYTES) FROM v$temp_extent_map GROUP BY OWNER ORDER BY 1;

Back before temporary TEMP tablespaces I used to use MAPPER.SQL to track the number of extents that the insert was using in the TEMP table. If I knew how much data I was trying to insert then I could tell how far along I was.

I'm not knowledgable enough to get MAPPER to work with temporary temp but v$temp_extent_map seems to supply the same info. User 0, I assume, means the extent is unused.

--
http://www.freelists.org/webpage/oracle-l
Received on Fri Feb 04 2005 - 09:25:30 CST

Original text of this message

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