Answers for "oracle compute statistics partition"

SQL
0

oracle calculate statistics on partition

ANALYZE TABLE SCHEMA.MY_TABLE PARTITION (PARTITION_NAME) COMPUTE STATISTICS;

exec DBMS_STATS.GATHER_TABLE_STATS('MY_USER', 'MY_TABLE', ESTIMATE_PERCENT=>50, 
	GRANULARITY=>'PARTITION', PARTNAME=>'My_PARTITION_NAME', DEGREE => 8);
Posted by: Guest on March-11-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language