Oracle 视图 V$SGA_DYNAMIC_COMPONENTS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$SGA_DYNAMIC_COMPONENTS提供有关SGA动态组件的信息。SGA是Oracle服务器参数文件(SPFILE)中的参数,用于管理Oracle服务器及其应用程序。SGA是Oracle实例的内存池,其中存储着用于辅助Oracle实例操作的数据结构和数据,如共享池和SQL语句缓存。
V$SGA_DYNAMIC_COMPONENTS显示SGA的动态部件,其中包含锁定在实例的内存的组件的详细信息。每一行表示一个SGA组件,该组件是可以动态更改SGA大小的一个部分。该视图可以帮助你确定SGA大小和结构,如何非永久性地更改它。
要使用V$SGA_DYNAMIC_COMPONENTS,请在SQL*Plus中执行以下查询:
SELECT component, current_size FROM v$sga_dynamic_components;
这将返回SGA组件及其当前大小的列表。
官方英文解释
V$SGA_DYNAMIC_COMPONENTS
displays information about the dynamic SGA components. This view summarizes information based on all completed SGA resize operations since instance startup. All sizes are expressed in bytes.
Column | Datatype | Description |
---|---|---|
|
|
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 grow or the shrink operation |
|
|
The ID of the container to which the data pertains. Possible values include:
|