本站中文解释
Oracle 视图DBA_PARALLEL_EXECUTE_TASKS显示了当前用户的并行操作的任务信息,如块的大小和工作单元处理的情况,还能监视每个任务的完成时间和失败信息,通过这个视图可以进行性能监视,排错以及获取用户有关并行操作的信息。
使用Oracle视图DBA_PARALEL_EXECUTE_TASKS的步骤如下:
1)连接到Oracle数据库。
2)创建一个Oracle查询并运行它,以查看当前用户执行并行操作的任务信息,以收集有关并行操作的信息:
SELECT * FROM DBA_PARALLEL_EXECUTE_TASKS;
3)解析查询结果以检索任务的相关信息,根据需要执行其他操作。
官方英文解释
DBA_PARALLEL_EXECUTE_TASKS
displays all tasks in the database.
Related View
USER_PARALLEL_EXECUTE_TASKS
displays the tasks created by the current user. This view does not display the TASK_OWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the task |
|
|
|
Name of the task |
|
|
Type of parallel update:
|
|
|
|
Status of the task:
|
|
|
|
Owner of the table to be chunked |
|
|
|
Name of the table to be chunked |
|
|
|
Name of the column holding IDs (only applicable to |
|
|
|
Comment field |
|
|
|
Prefix of the job name executing this task |
|
|
|
Argument used in the previous |
|
|
|
Argument used in the previous |
|
|
|
Argument used in the previous |
|
|
|
Argument used in the previous |
|
|
|
Argument used in the previous |
|
|
|
Argument used in the previous |
|
|
|
Argument used in the previous |
See Also:
-
“USER_PARALLEL_EXECUTE_TASKS”
-
Oracle Database PL/SQL
Packages and Types Reference for more information about theDBMS_PARALLEL_EXECUTE.RUN_TASK
procedure