when you execute this where is the output displayed.. Thanks
hmm what output, do you know what is used for?!?!?
Originally posted by netbar when you execute this where is the output displayed.. TST: SYS> exec DBMS_STATS.GATHER_DATABASE_STATS; PL/SQL procedure successfully completed. TST: SYS> HTH.
Originally posted by netbar when you execute this where is the output displayed.. Thanks Hi, if you want to monitor the progress of sampling statistics then select the last_analyzed-column in dba_indexes/dba_tables. Code: SELECT count(dt.*) from dba_tables dt where dt.last_amalyzed > TRUNC(SYSDATE); Normally the sys-packages do not make an output to console for viewing the progress of an operation; Orca
SELECT count(dt.*) from dba_tables dt where dt.last_amalyzed > TRUNC(SYSDATE);
Originally posted by Orca777 Code: SELECT count(dt.*) from dba_tables dt where dt.last_amalyzed > TRUNC(SYSDATE); Correction... Code: SELECT count(*) from dba_tables dt where dt.last_aNalyzed > TRUNC(SYSDATE); HTH.
SELECT count(*) from dba_tables dt where dt.last_aNalyzed > TRUNC(SYSDATE);
Hi, thenks for correction! Orca
Forum Rules
Bookmarks