how to analyze table partition using the Oracle provided package. If anyone knows what is the option to do this then please let me know. Thanks in advance.
Just specify the partname parameter to dbms_stats.gather_table_stats:
exec dbms_stats.gather_table_stats(ownname=>'<USER>',
tabname=>'<TABLE>',
partname=>'<PARTITION>',
<etc.>
)
No one has followed this question yet.