ORA-39147: cannot migrate Data Pump queue table ownership to this instance ORACLE 报错 故障修复 远程处理

文档解释

ORA-39147: cannot migrate Data Pump queue table ownership to this instance

Cause: There are active Data Pump jobs running on another instance in a RAC. All concurrent, active Data Pump jobs must be run on the same instance.

Action: Start this job on the same instance where other active Data Pump jobs are running, or wait until they finish.

ORA-39147: cannot migrate Data Pump queue table ownership to this instance错误

ORA-39147错误是一种常见的ORACLE数据库错误,这个错误表明在尝试将数据泵队列表所有权迁移到当前实例时出现了问题,而这会导致数据泵请求无法正常运行。

ORA-39147错误通常发生在当前实例上不允许使用数据泵出现问题时,当另一个实例也禁用数据泵功能时,这个错误也会频繁出现。

这个错误也可能发生在当前实例上使用数据泵,但它不允许实例对数据泵队列表进行更改的时候。同样,如果表的所有者已经被删除,这个错误也会出现。

一般处理方法及步骤

1.确保当前实例上的数据泵功能已启用。

2.运行以下查询,确保当前实例上的所有者角色仍然存在:

select *

from dba_roles

where role = ‘QUEUE_OWNER’;

如果该角色不存在,则使用以下语句创建新角色:

create role queue_owner;

3.使用以下语句授予要迁移的表所有权:

grant queue_owner to

;

4.现在,可以使用以下语句迁移表所有权:

alter table

owner to ;

5.最后,可以使用以下语句将数据泵队列表所有权迁移到当前实例:

alter table

owner to queue_owner;


数据运维技术 » ORA-39147: cannot migrate Data Pump queue table ownership to this instance ORACLE 报错 故障修复 远程处理