Oracle 视图 DBA_HIST_MEM_DYNAMIC_COMP 官方解释,作用,如何使用详细说明
本站中文解释
_ALLOC
Oracle 视图DBA_HIST_MEM_DYNAMIC_COMP_ALLOC 是存储在回收例程中收集的内存动态组件分配历史信息的表视图,该表视图用于查看给出组件分配情况, 以便检查其动态特性是否超出其限制,或者检查内存 EDU 池是否已使用到极限,使应用程序拥有充足的内存资源。
使用此表,可以确定数据库的内存增长或收缩趋势,并采取合理的措施保持其合理性。此外,可以查看每个数据库实例的内存组件分配情况,以确定其动态特性是否超出其限制,或者检查内存 EDU 池是否已使用到极限。
要使用此表,您需要执行以下查询:
SELECT *
FROM DBA_HIST_MEM_DYNAMIC_COMP_ALLOC;
官方英文解释
DBA_HIST_MEM_DYNAMIC_COMP displays historical memory component sizes.
This view contains snapshots of V$MEMORY_DYNAMIC_COMPONENTS.
| Column | Datatype | NULL | Description |
|---|---|---|---|
|
|
| Unique snapshot ID |
|
|
| Database ID for the snapshot |
|
|
| Instance number for the snapshot |
|
|
| Component name |
|
| Current size of the component | |
|
| Minimum size of the component since instance startup | |
|
| Maximum size of the component since instance startup | |
|
| Value of the user parameter for the component | |
|
| Number of operations since instance startup | |
|
| Last completed operation for the component:
| |
|
| Mode of the last completed operation:
| |
|
| Start time of the last completed operation | |
|
| Granularity of the | |
|
| The database ID of the PDB for the sampled session | |
|
| The ID of the container that
|
See Also:
“V$MEMORY_DYNAMIC_COMPONENTS”
