You are on page 1of 1

set linesize 1000

set pagesize 100


column table_name format a50
column minutes format 999,999
column rows_per_minute 999,999,999
select
substr(sql_text,instr(sql_text,'into "'),50) table_name,
rows_processed, round((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss
'))*24*60,1) minutes,
trunc(rows_processed/((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss
'))*24*60)) rows_per_minute
from
sys.v_$sqlarea
where
sql_text like 'insert %into "%' and command_type = 2 and open_versions > 0;

You might also like