重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 855|回复: 0
打印 上一主题 下一主题

[工具] ERROR OGG-08221 Cannot Register Or Unregister EXTRACT OCI Error 24,001

[复制链接]
跳转到指定楼层
楼主
发表于 2023-3-26 12:08:50 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
SYMPTOMS
GGSCI> register extract EXTRACT-NAME database

   ERROR OGG-08221 Cannot register or unregister EXTRACT EXTRACT-NAME because of the following SQL error: OCI Error 24,001.


CAUSE
An integrated extract with the same name was already registered in the database.

SOLUTION
In this particular case it was a new database where they were trying to register a new Integrated Extract, no one ever had created an IE with the same name earlier but this database where they were trying to register the integrated extract was actually copied/cloned from an existing database which had Integrated Extracts registered.

As per company's standard they wanted to register an IE with the same name  and were not able to do so.



First the below was tried but didn't help:

SQL> execute DBMS_AQADM.DROP_QUEUE_TABLE (queue_table => 'OGG$<<Queue-Table-Name>>', force => true);



To resolve the issue all the objects pertaining to the extract name were first queried from the dictionary (dba_objects) and then dropped using below statement before registering the extract successfully:

       SQL> execute DBMS_AQADM.DROP_QUEUE_TABLE (queue_table => 'AQ$_<<Queue-Table-Name>>_T', force => true);

       SQL> execute DBMS_AQADM.DROP_QUEUE_TABLE (queue_table => 'AQ$_<<Queue-Table-Name>>_H', force => true);

       SQL> drop sequence AQ$_<<Queue-Table-Name>>_N;

       SQL> drop view AQ$OGG$<<Queue-Table-Name>>_S;

       SQL> drop view AQ$OGG$<<Queue-Table-Name>>_R;

     etc...

NOTE: In the images and/or the document content above, the user information and data used represents fictitious data from the Oracle sample schema(s) or Public
Documentation delivered with an Oracle database product. Any similarity to actual persons, living or dead, is purely coincidental and not intended in any manner.

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 支持支持 反对反对
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-4-28 20:50 , Processed in 0.079882 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表