Oracle 视图 DBA_HIST_SGA 官方解释,作用,如何使用详细说明
本站中文解释
_SUMMARY与V$SGA_TARGET
Oracle视图:DBA_HIST_SGA_SUMMARY
作用:
DBA_HIST_SGA_SUMMARY视图提供有关用于调查过去数小时中SGA物理内存大小的细节。它是一个把所有聚集在一起的AWR查询。
使用方法:
要使用DBA_HIST_SGA_SUMMARY视图,请运行以下简单查询:
SELECT *
FROM DBA_HIST_SGA_SUMMARY;
Oracle视图:V$SGA_TARGET
作用:
V$SGA_TARGET 视图显示了 SGA 的总大小以及每个 SGA 子组件的大小,因此允许你监控复制实例(数据库实例)共享内存池实例(SGA)的大小。
使用方法:
要使用 V$SGA_TARGET 视图,请运行以下简单查询:
SELECT *
FROM V$SGA_TARGET;
官方英文解释
DBA_HIST_SGA
displays historical summary information about the system global area (SGA).
This view contains snapshots of V$SGA
.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Unique snapshot ID |
|
|
|
Database ID for the snapshot |
|
|
|
Instance number for the snapshot |
|
|
|
SGA component group |
|
|
|
Memory size (in bytes) |
|
|
The database ID of the PDB for the sampled session |
|
|
|
The ID of the container that
|
See Also:
“V$SGA”