Oracle 视图 DBA_HIST_PGA_TARGET_ADVICE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_HIST_PGA_TARGET_ADVICE包括关于监控历史PGA内存有关建议和结论的信息。
使用该视图,可以查询到关于PGA内存使用的建议和结论,例如PGA内存使用情况、PGA 目标建议、建议的比率等。主要信息包括:
• SNAP_ID:运行监控的时间点的SCN;
• INSTANCE_NUMBER:识别不同实例的唯一标识符;
• ADVICE_CATEGORY:对当前PGA内存使用情况的引导;
• ADVICE_NAME:针对数据库的PGA的建议;
• ADVICE_DESCRIPTION:建议的描述;
• ADVICE_STRING:建议和结论的详细信息;
• ADVICE_RATIO:记录 PGATARGET 和总PGA 内存建议比率;
• PGA_TARGET_FACTOR:记录PGA Target 建议因子;
• PGA_TARGET_ADVICE_MESSAGE:记录PGA Target 建议信息;
• PGA_TARGET_ADVICE_FOR_ESTIMATE:记录 PGATARGET 建议对于当前的估计。
要使用该视图,可以通过以下的SQL语句:
select advice_string,snap_id,instance_number,advice_category,advice_name,advice_ratio
from DBA_HIST_PGA_TARGET_ADVICE
where snap_id= and instance_number=;
其中,指定监控时间,指定实例号。
官方英文解释
DBA_HIST_PGA_TARGET_ADVICE
displays historical predictions of how the cache hit percentage and over allocation count statistics displayed by the V$PGASTAT
performance view would be impacted if the value of the PGA_AGGREGATE_TARGET
parameter is changed.
This view contains snapshots of V$PGA_TARGET_ADVICE
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Instance number for the snapshot |
|
|
|
Value of |
|
|
|
|
|
|
Indicates whether the advice is enabled ( |
|
|
|
Total bytes processed by all the work areas considered by this advice (in bytes) |
|
|
|
Time (in seconds) required to process the bytes |
|
|
|
Estimated number of extra bytes which would be read or written if |
|
|
|
Estimated value of the cache hit percentage statistic when |
|
|
|
Estimated number of PGA memory over-allocations if the value of |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|
See Also:
-
“V$PGASTAT”
-
“V$PGA_TARGET_ADVICE”
-
“PGA_AGGREGATE_TARGET”