BASIC: The computation of AWR statistics and metrics is turned off. The automatic optimizer statistics task is disabled, as are all advisors and server-generated alerts.
TYPICAL: Major statistics that are required for database self-management are collected. They represent what is typically needed to monitor Oracle database behavior. This includes automatic gathering of statistics to reduce the likelihood of poorly performing SQL statements due to stale or invalid statistics.
ALL: All possible statistics are captured. This level of capture adds timed OS statistics and plan execution statistics. These statistics are not needed in most cases and should not be enabled for best performance; they are sometimes needed for specific diagnostics tests.
4.V$STATISTICS_LEVEL 动态视图
这三个参数的功能,可以通过V$STATISTICS_LEVEL 动态视图 进行查看
4.1 TYPICAL
1* select statistics_name,description from V$STATISTICS_LEVEL where activation_level in ('TYPICAL')