Oracle 视图 DBA_HIST_PGASTAT 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_HIST_PGASTAT是一个系统数据字典视图,包含有关PGA(即专用性能区)的历史信息。它显示了PGA内存的物理分配和使用情况,以及有关PGA的活动,这些活动包括应用程序向PGA中分配内存的作业,以及在PGA中处理的活动。此信息可用于检查PGA的性能,为诊断性能问题提供参考。
使用此视图,可以确定当前PGA的大小和内存分配,以及连接期间PGA是如何发展的。可以利用这些信息,调整PGA空间,以满足目标性能要求。要查询此视图,可以运行如下SQL查询:
SELECT SNAP_ID, INSTANCE_NUMBER,PGA_ALLOCATED, PGA_USED
FROM DBA_HIST_PGASTAT
WHERE SNAP_ID = (SELECT MAX (SNAP_ID) FROM DBA_HIST_SNAPSHOT);
这段SQL将向您提供SNAP_ID,INSTANCE_NUMBER,PGA_ALLOCATED和PGA_USED列的当前值。
官方英文解释
DBA_HIST_PGASTAT
displays historical PGA memory usage statistics as well as statistics about the automatic PGA memory manager when it is enabled.
This view contains snapshots of V$PGASTAT
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Database instance number |
|
|
|
Name of the statistic:
See Also: |
|
|
Statistic value |
|
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|
See Also:
“V$PGASTAT”