ORA-25340: must use commit-time queue for sync_capture ORACLE 报错 故障修复 远程处理
文档解释
ORA-25340: must use commit-time queue for sync_capture
Cause: An attempt was made to create a sync_capture without using a commit-time queue.
Action: Rerun statement with a commit-time queue.
?
ORA-25340: must use commit-time queue for sync_capture 的意思是您必须使用commit_time队列来使用sync_capture功能。
官方解释
当sync_capture选项被启用作为capture进程的一部分时,ORA-25340将会报出,表明必须使用commit_time队列来获取更改。
常见案例
当使用DDL或者DML操作且开启sync_capture选项时就会出现ORA-25340错误。
一般处理方法及步骤
1.确保已经存在commit-time队列。
2.然后使用如下SQL语句为capture进程定义commit-time队列:
ALTER CAPTURE capname ADD QUEUE (commit_time_queue);
3.重新启动capture进程。