DBMS_STAT of tables one day then indexes another day - Is this efficient?
Is doing dbms stat gathering statistics for tables in a day then the indexes in another day efficient?
is the cascade=> TRUE takes care of the partitions also?
I have seen also a script that has the following and the table PKG_NTWK_MAP is a paritioned table. Is this ok? What can I do to improve it.
EXECUTE DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=> '&1', TABNAME=> 'PKG_NTWK_MAP',
PARTNAME=> NULL)
is the cascade=> TRUE takes care of the partitions also?
I have seen also a script that has the following and the table PKG_NTWK_MAP is a paritioned table. Is this ok? What can I do to improve it.
EXECUTE DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=> '&1', TABNAME=> 'PKG_NTWK_MAP',
PARTNAME=> NULL)
0