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