ba6.us - Dave's Database Related Stuff

  • home
  • blog
  • notebooks
  • projects
  • recent
  • about
  • manifesto
  • !
Home › Real Time Monitoring of Oracle

Tag Cloud

apex Application Express Auditing data dbi development export funnies HTML Java linux monitoring oem oracle performance perl rman scripting sql SQL Developer sqlplus tuning unix windows
more tags

Search

RSS Feed

Blog Posts :

Navigation

  • Feed aggregator

User login

  • Request new password

Import/Export

dmann — Fri, 10/03/2008 - 16:44

Import/Export Feedback Monitoring

If you set FEEDBACK=10000 while doing an import or export you can use the query below to estimate the number of periods you should see to indicate progress. I also included number of lob columns because this can affect the import/export speed.
select table_name,
round(num_rows/10000,2) as dots,
round(num_rows/10000/75,2) as lines,
(select count(*) from user_lobs where user_tables.table_name=user_lobs.table_name having count(*) > 0) as num_lob_cols
from user_tables
--where table_name like 'REVIEW%'
order by table_name
‹ Explain Plan up Instance ›
  • Printer-friendly version
  • Add new comment


Cornify
  • home
  • blog
  • notebooks
  • projects
  • recent
  • about
  • manifesto
  • !

Content Copyright 2006-2010. Links are copyright of respective owners.