Oracle 视图 DBA_INMEMORY_AIMTASKDETAILS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_INMEMORY_AIMTASKDETAILS是用于检索与AIM(自动内存管理)相关的任务信息的一个数据字典视图。
DBA_INMEMORY_AIMTASKDETAILS的特点包括:
* 查看任务创建和意图以及它们的状态;
* 查看任务详细信息,例如从数据文件和内存中MyMOV对象的大小;
* 查看并管理AIM活动历史记录。
要使用DBA_INMEMORY_AIMTASKDETAILS,首先需要将其映射到给定用户的连接。如果给定用户没有直接映射此视图,可以使用以下语句创建一个:
GRANT SELECT ON SYS.DBA_INMEMORY_AIMTASKDETAILS TO username;
此后,用户可以使用SELECT语句来检索任务信息。例如,以下SQL语句将生成当前正在运行的AIM任务的列表:
SELECT taskname, taskaction,
taskstate
FROM dba_inmemory_aimtaskdetails
WHERE taskstate = ‘RUNNING’;
官方英文解释
DBA_INMEMORY_AIMTASKDETAILS
displays details for an Automatic In-Memory management task.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Number that uniquely identifies a specific automatic IM column store management task |
|
|
|
Owner of the object subject to automatic IM column store management task action |
|
|
|
Name of the object subject to automatic IM column store management task action |
|
|
|
Name of the subobject subject to automatic IM column store management task action |
|
|
|
Action taken on the object |
|
|
|
Status of the action on the object |
See Also:
Oracle Database In-Memory
Guide for more information about configuring the Automatic In-Memory feature