•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the Oracle section within the Web Development category of DaniWeb, a massive community of 397,706 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,338 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our Oracle advertiser:
Views: 1401 | Replies: 0
![]() |
•
•
Join Date: Jan 2007
Posts: 1
Reputation:
Rep Power: 0
Solved Threads: 0
Hi
I am working on Oracle database 10g. I am trying to implement advanced replication on my database.
Till now I have replicated tables and those are working fine. Now I want to replicate procedure, in this case on running all the procedures(adding packages and generating replication support) I am not getting any error. But after this I am not able to resume replication. In DBA_REPGROUP status of master group is QUIESCED.
I want to know why I am getting this problem and how can i solve it.
I am running following code for this :
BEGIN
DBMS_REPCAT.create_master_repobject (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE',
use_existing_object => TRUE,
COMMENT => 'Added on ' || SYSDATE,
retry => FALSE,
gname => 'MYREPGRP'
);
DBMS_REPCAT.create_master_repobject (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE BODY',
use_existing_object => TRUE,
COMMENT => 'Added on ' || SYSDATE,
retry => FALSE,
gname => 'MYREPGRP'
);
END;
BEGIN
DBMS_REPCAT.generate_replication_support (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE',
DISTRIBUTED => TRUE,
min_communication => TRUE
);
DBMS_REPCAT.generate_replication_support (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE BODY',
DISTRIBUTED => TRUE,
min_communication => TRUE
);
END;
Thanks,
Tanu
I am working on Oracle database 10g. I am trying to implement advanced replication on my database.
Till now I have replicated tables and those are working fine. Now I want to replicate procedure, in this case on running all the procedures(adding packages and generating replication support) I am not getting any error. But after this I am not able to resume replication. In DBA_REPGROUP status of master group is QUIESCED.
I want to know why I am getting this problem and how can i solve it.
I am running following code for this :
BEGIN
DBMS_REPCAT.create_master_repobject (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE',
use_existing_object => TRUE,
COMMENT => 'Added on ' || SYSDATE,
retry => FALSE,
gname => 'MYREPGRP'
);
DBMS_REPCAT.create_master_repobject (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE BODY',
use_existing_object => TRUE,
COMMENT => 'Added on ' || SYSDATE,
retry => FALSE,
gname => 'MYREPGRP'
);
END;
BEGIN
DBMS_REPCAT.generate_replication_support (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE',
DISTRIBUTED => TRUE,
min_communication => TRUE
);
DBMS_REPCAT.generate_replication_support (sname => 'REPADMIN',
oname => 'PKG_COMMON_ERROR',
TYPE => 'PACKAGE BODY',
DISTRIBUTED => TRUE,
min_communication => TRUE
);
END;
Thanks,
Tanu
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb Oracle Marketplace
Similar Threads
- Urgent Advice needed (Community Introductions)
- help please urgent review needed (Website Reviews)
- Urgent computer help needed – I can’t see my task bar! (Windows NT / 2000 / XP / 2003)
- PC Case Mods (Geeks' Lounge)
- Please tell me to write TSR's for windows enviorment (C)
Other Threads in the Oracle Forum
- Previous Thread: Urgent help required
- Next Thread: using jsp for a calendar connected to oracle


Linear Mode