ORA-00830: cannot set statistics_level to BASIC with auto-tune SGA enabled

ORA-00830: cannot set statistics_level to BASIC with auto-tune SGA enabled

Error

SQL> alter system set statistics_level=basic scope=spfile;
alter system set statistics_level=basic scope=spfile
*
ERROR at line 1:
ORA-32017: failure in updating SPFILE
ORA-00830: cannot set statistics_level to BASIC with auto-tune SGA enabled

Cause
Due to SGA_TARGET value is not having zero, it tuned for automatic tuning with Memory target parameter or it is any PDB database.

Solution
Fixed the issue with doing SGA_target parameter to Zero value.


SQL> alter system set sga_target=0 scope=both;
System altered.

SQL> alter system set statistics_level=basic;
System altered.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.