<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>EveryDay Practical Solutions for an Oracle&#124;SQL Server DBA &#187; Setup</title>
	<atom:link href="http://www.oracledbasupport.co.uk/category/advanced-replication/setup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.oracledbasupport.co.uk</link>
	<description>This is my (Sagar PATIL ) blog to list day to day issues</description>
	<lastBuildDate>Fri, 20 Jan 2012 22:39:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Listing General Information About the Error Transactions at a Replication Site</title>
		<link>http://www.oracledbasupport.co.uk/listing-general-information-about-the-error-transactions-at-a-replication-site/</link>
		<comments>http://www.oracledbasupport.co.uk/listing-general-information-about-the-error-transactions-at-a-replication-site/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 11:19:21 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Queue/Setup Errors]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[DD-Mon-YYYY]]></category>
		<category><![CDATA[destination]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[HEADING]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[TIME]]></category>
		<category><![CDATA[TO_CHAR]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/10/14/listing-general-information-about-the-error-transactions-at-a-replication-site/</guid>
		<description><![CDATA[Find out total number of error X&#8217;actions SELECT   COUNT ( * ) FROM   (SELECT   DEFERRED_TRAN_ID, ORIGIN_TRAN_DB, DESTINATION, TO_CHAR (START_TIME, &#8216;DD-Mon-YYYY hh24:mi:ss&#8217;) TIME_OF_ERROR, ERROR_NUMBER, ERROR_MSG FROM   DEFERROR); Locate Earliest date for the Error X&#8217;actions SELECT   TO_CHAR (MAX (START_TIME), &#8216;DD-Mon-YYYY hh24:mi:ss&#8217;) TIME_OF_ERROR FROM   DEFERROR; Locate Latest date for the Error X&#8217;actions SELECT   TO_CHAR (MIN (START_TIME), &#8216;DD-Mon-YYYY hh24:mi:ss&#8217;) [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/listing-general-information-about-the-error-transactions-at-a-replication-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete MASTER Node: Rollback ADD_NEW_MASTERS Procedure</title>
		<link>http://www.oracledbasupport.co.uk/undo_add_new_masters_request-to-rollback-add_new_masters-procedure/</link>
		<comments>http://www.oracledbasupport.co.uk/undo_add_new_masters_request-to-rollback-add_new_masters-procedure/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 15:48:15 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/29/undo_add_new_masters_request-to-rollback-add_new_masters-procedure/</guid>
		<description><![CDATA[I am trying to add a new master database into existing replication cluster using API DBMS_REPCAT.ADD_MASTER_DATABASE. The system returned error : ORA-23493: &#8220;REPC.US.ORACLE.COM&#8221; is not a new site for extension request &#8220;57C8B3C5C100528AE0440060B0C193C6&#8243; Full Rrror : ERROR at line 1: ORA-23493: &#8220;REPC.US.ORACLE.COM&#8221; is not a new site for extension request &#8220;57A6AC50B2801525E0440060B0C193C6&#8243; ORA-01403: no data found ORA-06512: [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/undo_add_new_masters_request-to-rollback-add_new_masters-procedure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drop/Delete Multi-Master Replication</title>
		<link>http://www.oracledbasupport.co.uk/dropping-multi-master-replication/</link>
		<comments>http://www.oracledbasupport.co.uk/dropping-multi-master-replication/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 08:36:21 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/25/dropping-multi-master-replication/</guid>
		<description><![CDATA[Dropping Multi-master Replication Execute following SQL at Master Defn Site (here repa) $ sqlplus repadmin/repadmin@repa REM Disable replication execute dbms_repcat.suspend_master_activity(gname=&#62;&#8217;SCOTT_REPG&#8217;); REM Delete replication groups execute dbms_repcat.drop_master_repobject(&#8216;SCOTT&#8217;,'EMP&#8217;,'TABLE&#8217;); execute dbms_repcat.drop_master_repobject(&#8216;SCOTT&#8217; ,&#8217;DEPT&#8217;,'TABLE&#8217;); execute dbms_repcat.drop_master_repgroup(&#8216;SCOTT_REPG&#8217;); execute dbms_repcat.remove_master_databases(&#8216;SCOTT_REPG&#8217;,'repb&#8217;); REM Remove private database links to other master databases drop database link repb; connect sys/repb@repb REM Remove the REPADMIN user execute dbms_defer_sys.unregister_propagator [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/dropping-multi-master-replication/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add a new node using ADD_MASTER_DATABASE : Group Quiescing Method</title>
		<link>http://www.oracledbasupport.co.uk/add-a-new-node-using-add-master-database-group-quiescing-method/</link>
		<comments>http://www.oracledbasupport.co.uk/add-a-new-node-using-add-master-database-group-quiescing-method/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 12:06:16 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Database]]></category>
		<category><![CDATA[GROUP]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[NAME]]></category>
		<category><![CDATA[oracle dba]]></category>
		<category><![CDATA[ORACLE instance]]></category>
		<category><![CDATA[repBB]]></category>
		<category><![CDATA[RepCC]]></category>
		<category><![CDATA[select count]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/23/step-by-step-tutorial-to-add-new-node-and-multi-master-cluster/</guid>
		<description><![CDATA[I have 2 databases (repA and repB) which are part of multi master replication cluster server A and Server B. I now need to add another Server C with database name of repC. Consider this as a Live system and require a very minimum downtime. Pre-Requisites : Step 1&#62; Check there are no pending X&#8217;actions [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/add-a-new-node-using-add-master-database-group-quiescing-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Advanced Replication :Monitoring Administrative Requests</title>
		<link>http://www.oracledbasupport.co.uk/monitoring-administrative-requests-important/</link>
		<comments>http://www.oracledbasupport.co.uk/monitoring-administrative-requests-important/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 11:01:40 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Administrative Request]]></category>
		<category><![CDATA[Administrative Requests]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[Listing]]></category>
		<category><![CDATA[Master COLUMN ID]]></category>
		<category><![CDATA[MESSAGE HEADING]]></category>
		<category><![CDATA[repcat]]></category>
		<category><![CDATA[Request]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/22/monitoring-administrative-requests-important/</guid>
		<description><![CDATA[1. Listing General Information About Administrative Requests at the Master 2. Determining the Cause of Administrative Request Errors at the Master 3. Listing Information About the Job that Executes Administrative Requests at the Master Listing General Information About Administrative Requests at the Master COLUMN ID HEADING &#8216;Admin&#124;Request&#124;ID&#8217; FORMAT 999999 COLUMN REQUEST HEADING &#8216;Request&#8217; FORMAT A25 [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/monitoring-administrative-requests-important/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List General Information About Master Groups &amp; replication activity</title>
		<link>http://www.oracledbasupport.co.uk/listing-general-information-about-master-groups/</link>
		<comments>http://www.oracledbasupport.co.uk/listing-general-information-about-master-groups/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 10:47:10 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[DEFCALL]]></category>
		<category><![CDATA[destination]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Master Group]]></category>
		<category><![CDATA[NVL]]></category>
		<category><![CDATA[SELECT DISTINCT]]></category>
		<category><![CDATA[SNAME]]></category>
		<category><![CDATA[transaction]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/22/listing-general-information-about-master-groups/</guid>
		<description><![CDATA[You can retrieve following details : The number of unpropagated deferred transaction-destination pairs. Each deferred transaction can have multiple destinations to which it will be propagated, and each destination is a single deferred transaction-destination pair. The number of deferred transaction errors (error transactions) for each master group The number of administrative requests for each master [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/listing-general-information-about-master-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Advanced Replication &#124; Listing the Master Sites Participating in a Master Group</title>
		<link>http://www.oracledbasupport.co.uk/listing-the-master-sites-participating-in-a-master-group/</link>
		<comments>http://www.oracledbasupport.co.uk/listing-the-master-sites-participating-in-a-master-group/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 10:40:53 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[DBLINK]]></category>
		<category><![CDATA[HEADING]]></category>
		<category><![CDATA[Master Group]]></category>
		<category><![CDATA[Master Group COLUMN]]></category>
		<category><![CDATA[Master Sites]]></category>
		<category><![CDATA[MASTERDEF]]></category>
		<category><![CDATA[REPSITES]]></category>
		<category><![CDATA[Sites]]></category>
		<category><![CDATA[WHERE]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/22/listing-the-master-sites-participating-in-a-master-group/</guid>
		<description><![CDATA[COLUMN GNAME HEADING &#8216;Master Group&#8217; FORMAT A20 COLUMN DBLINK HEADING &#8216;Sites&#8217; FORMAT A25 COLUMN MASTERDEF HEADING &#8216;Master&#124;Definition&#124;Site?&#8217; FORMAT A10 SELECT GNAME, DBLINK, MASTERDEF FROM DBA_REPSITES WHERE MASTER = &#8216;Y&#8217; AND GNAME NOT IN (SELECT GNAME FROM DBA_REPSITES WHERE SNAPMASTER = &#8216;Y&#8217;) ORDER BY GNAME;]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/listing-the-master-sites-participating-in-a-master-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An example of Conflict Resolution Method</title>
		<link>http://www.oracledbasupport.co.uk/an-example-of-conflict-resolution-method/</link>
		<comments>http://www.oracledbasupport.co.uk/an-example-of-conflict-resolution-method/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 10:03:25 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[EMP]]></category>
		<category><![CDATA[EMPNO]]></category>
		<category><![CDATA[repA]]></category>
		<category><![CDATA[Resolution]]></category>
		<category><![CDATA[resolution method]]></category>
		<category><![CDATA[scott]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[timeStamp]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/22/an-example-of-conflict-resolution-method/</guid>
		<description><![CDATA[Here I am going to configure Oracle to use latest timestamp method to settle conflict ON SCOTT.EMP table’s EMPNO column. We need to 1. Define a column group for use by the resolution method. 2. Define the resolution method. 3. Add additional support as required. 1. Define the Column Group repA&#62; BEGIN DBMS_REPCAT.SUSPEND_MASTER_ACTIVITY ( gname [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/an-example-of-conflict-resolution-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ORA-23419: regenerate replication support before resuming master activity</title>
		<link>http://www.oracledbasupport.co.uk/ora-23419-regenerate-replication-support-before-resuming-master-activity/</link>
		<comments>http://www.oracledbasupport.co.uk/ora-23419-regenerate-replication-support-before-resuming-master-activity/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 08:44:37 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/19/ora-23419-regenerate-replication-support-before-resuming-master-activity/</guid>
		<description><![CDATA[SQL&#62; BEGIN DBMS_REPCAT.RESUME_MASTER_ACTIVITY ( gname =&#62; &#8216;scott_repg&#8217;); END; BEGIN * ERROR at line 1: ORA-23419: regenerate replication support before resuming master activity ORA-06512: at &#8220;SYS.DBMS_SYS_ERROR&#8221;, line 79 ORA-06512: at &#8220;SYS.DBMS_REPCAT_MAS&#8221;, line 3528 ORA-06512: at &#8220;SYS.DBMS_REPCAT&#8221;, line 826 ORA-06512: at line 2 Run followng commands for creating rep Support SQL&#62; BEGIN DBMS_REPCAT.GENERATE_REPLICATION_SUPPORT ( sname =&#62; &#8216;scott&#8217;, [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/ora-23419-regenerate-replication-support-before-resuming-master-activity/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MultiMaster Replication &#124; Alter objects into Existing Mutimaster Group</title>
		<link>http://www.oracledbasupport.co.uk/lets-add-a-new-column-into-existing-mutimaster-group/</link>
		<comments>http://www.oracledbasupport.co.uk/lets-add-a-new-column-into-existing-mutimaster-group/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 08:11:23 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/19/lets-add-a-new-column-into-existing-mutimaster-group/</guid>
		<description><![CDATA[When you want to alter a table structure you should use QUIESCE the group and use following API to replicate DDL changes at all sites. BEGIN DBMS_REPCAT.ALTER_MASTER_REPOBJECT ( sname =&#62; &#8216;SCOTT&#8217;, oname =&#62; &#8216;EMP&#8217;, type =&#62; &#8216;TABLE&#8217;, ddl_text =&#62; &#8216;ALTER TABLE SCOTT.EMP ADD (STATUS VARCHAR2(10))&#8217;); END; I wanted to observe what Oracle does when we [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/lets-add-a-new-column-into-existing-mutimaster-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic Replication Views</title>
		<link>http://www.oracledbasupport.co.uk/dba-dynamic-replication-views/</link>
		<comments>http://www.oracledbasupport.co.uk/dba-dynamic-replication-views/#comments</comments>
		<pubDate>Fri, 12 Sep 2008 11:38:21 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/12/dba-dynamic-replication-views/</guid>
		<description><![CDATA[DBA_REPCATLOG describes the status for all asynchronous administrative requests and all error messages in the database. DBA_REPCOLUMN describes the replicated columns for all the tables in the database. DBA_REPCOLUMN_GROUP describes the column groups for all the tables in the database. DBA_REPCONFLICT describes the conflict resolution method for all the tables in the database on which [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/dba-dynamic-replication-views/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup 2 Way MultiMaster Replication?</title>
		<link>http://www.oracledbasupport.co.uk/how-to-setup-2-way-multimaster-replication/</link>
		<comments>http://www.oracledbasupport.co.uk/how-to-setup-2-way-multimaster-replication/#comments</comments>
		<pubDate>Thu, 11 Sep 2008 17:42:24 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[database link]]></category>
		<category><![CDATA[repA]]></category>
		<category><![CDATA[repadmin]]></category>
		<category><![CDATA[repb]]></category>
		<category><![CDATA[Replication]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Type]]></category>
		<category><![CDATA[User]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/12/how-to-setup-master-sites-in-multimaster-replication/</guid>
		<description><![CDATA[What objects can we Replicate? A replication object is a database object existing on multiple servers in a distributed database system. In a replication environment, any updates made to a replication object at one site are applied to the copies at all other sites. Advanced Replication enables you to replicate the following types of objects: [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/how-to-setup-2-way-multimaster-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle Advanced Replication &#124; Remove or Delete Master Site from a Master Group</title>
		<link>http://www.oracledbasupport.co.uk/removing-a-master-site-from-a-master-group/</link>
		<comments>http://www.oracledbasupport.co.uk/removing-a-master-site-from-a-master-group/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 10:26:56 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[DBLINK]]></category>
		<category><![CDATA[definition site]]></category>
		<category><![CDATA[Master definition site]]></category>
		<category><![CDATA[repA]]></category>
		<category><![CDATA[replication group]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[WHERE]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/08/removing-a-master-site-from-a-master-group/</guid>
		<description><![CDATA[Executed At: Master Definition Site Replication Status: Quiesced Step 1 Connect to the master definition site as the replication administrator. CONNECT repadmin/repadmin@repA.world Make sure the site you want to drop is not Master definition site for any replication group. SELECT GNAME, DBLINK, MASTERDEF FROM DBA_REPSITES WHERE MASTER = 'Y' AND GNAME NOT IN (SELECT GNAME [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/removing-a-master-site-from-a-master-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a &quot;QUIESCED mode&quot;</title>
		<link>http://www.oracledbasupport.co.uk/what-is-a-quiesced-mode/</link>
		<comments>http://www.oracledbasupport.co.uk/what-is-a-quiesced-mode/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 10:19:33 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/08/what-is-a-quiesced-mode/</guid>
		<description><![CDATA[Quiescing Quiescing is the mode that transfers a replication environment from the normal mode to the quiesced mode. While a replication environment is quiescing, the user is no longer able to execute a transaction against a replicated object, but any existing deferred transactions are propagated. Queries against a quiescing table are allowed. When all deferred [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/what-is-a-quiesced-mode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding a new Master Node in an existing Multi Master Cluster</title>
		<link>http://www.oracledbasupport.co.uk/adding-a-new-master-node-in-an-existing-multi-master-cluster/</link>
		<comments>http://www.oracledbasupport.co.uk/adding-a-new-master-node-in-an-existing-multi-master-cluster/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 11:50:18 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/05/adding-a-new-node-in-existing-cluster/</guid>
		<description><![CDATA[There are 2 ways to add a new master while the replication sites are suspended. 1. Adding Using ADD_MASTER_DATABASE Procedure 2. Adding with Offline Instantiation Using Export/Import Using ADD_MASTER_DATABASE Procedure 1. Connect to the master definition site and if replication status is normal, change the status to quiesced. We need to switch off all applications [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/adding-a-new-master-node-in-an-existing-multi-master-cluster/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle Advanced Replication &#124; Relocating Master Definition Site</title>
		<link>http://www.oracledbasupport.co.uk/relocating-the-master-definition-site/</link>
		<comments>http://www.oracledbasupport.co.uk/relocating-the-master-definition-site/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 07:55:49 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[gname]]></category>
		<category><![CDATA[RELOCATE]]></category>
		<category><![CDATA[repb]]></category>
		<category><![CDATA[repBB]]></category>
		<category><![CDATA[Site]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/05/changing-the-master-definition-site/</guid>
		<description><![CDATA[I have a live 4 node 4 way cluster between repA,repAA,repB &#38; repBB instances. The node repA is Master which I want to move to repAA. Database Release : 9.2.0.8 On HP UNIX All Master Sites Are Available DBMS_REPCAT.RELOCATE_MASTERDEF  was running for more than 2 hours Observation : Locate which DBMS jobs are running in [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/relocating-the-master-definition-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replication Views / Prerequisites for Advanced Replication</title>
		<link>http://www.oracledbasupport.co.uk/prerequisites-for-advanced-replication/</link>
		<comments>http://www.oracledbasupport.co.uk/prerequisites-for-advanced-replication/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 05:17:31 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/05/prerequisites-for-advanced-replication/</guid>
		<description><![CDATA[Prerequisites for Advanced Replication 1. Must have distributed and replication option installed Must run $ORACLE_HOME/rdbms/admin/catrep.sql as INTERNAL 2. Password for repsys, repadmin, and ACME should be the same on master and master definition site 3. Mandatory INIT.ORA parameters on both databases: shared_pool_size: 25M global_names=true job_queue_processes=2 open_links=6 job_queue_interval= &#60;less than interval for dba_jobs submitted&#62; job_queue_keep_connections=false Master [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/prerequisites-for-advanced-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add new Node without Quiescing (RMAN SCN Method)</title>
		<link>http://www.oracledbasupport.co.uk/adding-new-master-without-quiescing-the-replication-rman-method/</link>
		<comments>http://www.oracledbasupport.co.uk/adding-new-master-without-quiescing-the-replication-rman-method/#comments</comments>
		<pubDate>Fri, 05 Sep 2008 05:04:30 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[database link]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[flashback]]></category>
		<category><![CDATA[repA]]></category>
		<category><![CDATA[repb]]></category>
		<category><![CDATA[REPC]]></category>
		<category><![CDATA[repcat]]></category>
		<category><![CDATA[SCN]]></category>
		<category><![CDATA[status]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/05/add-new-master-without-quiescing-the-replication/</guid>
		<description><![CDATA[Task: We have a working setup of 4 node 4 way replication cluster built on Advanced/MultiMaster replication. 2 nodes out of these 4 nodes should be moved to a different physical location without a downtime. Solution : Add 2 more nodes into system and run a 6 node 6 way replication for some time. Once [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/adding-new-master-without-quiescing-the-replication-rman-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

