<?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; Daily Admin</title>
	<atom:link href="http://www.oracledbasupport.co.uk/category/advanced-replication/daily-admin/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>How to start database and Apps</title>
		<link>http://www.oracledbasupport.co.uk/how-to-start-database-and-apps-release-12/</link>
		<comments>http://www.oracledbasupport.co.uk/how-to-start-database-and-apps-release-12/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 18:39:00 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[E Business Suite]]></category>
		<category><![CDATA[addlnctl]]></category>
		<category><![CDATA[Apps]]></category>
		<category><![CDATA[inst]]></category>
		<category><![CDATA[ORACLE instance]]></category>
		<category><![CDATA[Script]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[service control]]></category>
		<category><![CDATA[status]]></category>
		<category><![CDATA[VIS]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2009/02/14/how-to-start-database-and-apps-release-12/</guid>
		<description><![CDATA[(Release 12) Login as database user cd $ORACLE_HOME/appsutil/scripts/&#60;SID_hostname&#62; ./addbctl.sh start &#60;Database Name&#62; : To start Database ./addlnctl.sh start &#60;Listener Name&#62; : To start Listener Login as apps user &#8220;applmgr&#8221; cd $APPLCSF/scripts/&#60;SID_hostname&#62; ./adstrtal.sh apps/&#60;apps_password&#62; You can stop the application by: Login as apps user &#8220;applmgr&#8221; ./adstpall.sh apps/&#60;apps_password&#62; For stopping listener and database: ./addlnctl.sh stop &#60;listener_name&#62; : [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/how-to-start-database-and-apps-release-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>API to Retrieve runtime Replication Parameters</title>
		<link>http://www.oracledbasupport.co.uk/parameters-for-replication/</link>
		<comments>http://www.oracledbasupport.co.uk/parameters-for-replication/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 17:16:02 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Queue/Setup Errors]]></category>
		<category><![CDATA[INSERT]]></category>
		<category><![CDATA[outval]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[tran]]></category>
		<category><![CDATA[VOUCHER]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/11/10/parameters-for-replication/</guid>
		<description><![CDATA[We often get thousands of replication conflits/errors at current system. A resolution is generally looking at EM console and resolving each error manually.  Please see examples below. This approach is working well until we have less than some thousands error x’actions at DEFERROR. Anything above that is causing a performance hit. Also DEFERROR /DEFTRANS get [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/parameters-for-replication/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List Transactions Currently Being Propagated to a Remote Master</title>
		<link>http://www.oracledbasupport.co.uk/determining-the-transactions-currently-being-propagated-to-a-remote-master/</link>
		<comments>http://www.oracledbasupport.co.uk/determining-the-transactions-currently-being-propagated-to-a-remote-master/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 11:18:23 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Calls]]></category>
		<category><![CDATA[List Transactions]]></category>
		<category><![CDATA[Propagated]]></category>
		<category><![CDATA[Remote Master SELECT]]></category>
		<category><![CDATA[SEQUENCE]]></category>
		<category><![CDATA[tran]]></category>
		<category><![CDATA[Transactions]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/10/15/determining-the-transactions-currently-being-propagated-to-a-remote-master-2/</guid>
		<description><![CDATA[SELECT                                                        /*+ ORDERED */ P  .XID "Tran Being Propagated", (MAX (C.CALLNO) + 1) "Number of Calls in Tran", (P.SEQUENCE / MAX (C.CALLNO) + 1) * 100 "% Processed Calls" FROM   V$REPLPROP P, DEFCALL C WHERE       P.NAME LIKE '%SLAVE%' AND P.DBLINK = '&#38;1' AND C.DEFERRED_TRAN_ID = P.XID GROUP BY   P.XID, P.SEQUENCE;]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/determining-the-transactions-currently-being-propagated-to-a-remote-master/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Average Amount of Time to Apply Transactions at Remote Sites</title>
		<link>http://www.oracledbasupport.co.uk/determining-the-average-amount-of-time-to-apply-transactions-at-remote-sites/</link>
		<comments>http://www.oracledbasupport.co.uk/determining-the-average-amount-of-time-to-apply-transactions-at-remote-sites/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 11:16:36 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Amount]]></category>
		<category><![CDATA[Average Latency]]></category>
		<category><![CDATA[DBLINK]]></category>
		<category><![CDATA[LATENCY]]></category>
		<category><![CDATA[Site]]></category>
		<category><![CDATA[substr]]></category>
		<category><![CDATA[transaction]]></category>
		<category><![CDATA[WHERE]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/10/15/determining-the-average-amount-of-time-to-apply-transactions-at-remote-sites/</guid>
		<description><![CDATA[SELECT substr(DBLINK,1,25), AVG_LATENCY &#8220;Average Latency&#8221; FROM DEFSCHEDULE WHERE upper(DBLINK) like &#8216;&#38;1&#8242;; Average latency is the average number of seconds between the first call of a transaction on the current site and the confirmation that the transaction was applied at the remote site. The SQL&#62; SELECT substr(DBLINK,1,25), AVG_LATENCY &#8220;Average Latency&#8221; 2 FROM DEFSCHEDULE 3 WHERE upper(DBLINK) [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/determining-the-average-amount-of-time-to-apply-transactions-at-remote-sites/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>Replication SQL Scripts</title>
		<link>http://www.oracledbasupport.co.uk/replication-sql-scripts/</link>
		<comments>http://www.oracledbasupport.co.uk/replication-sql-scripts/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 15:31:56 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Admin]]></category>
		<category><![CDATA[Setup]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/29/replication-sql-scripts/</guid>
		<description><![CDATA[Count of Objects replicated in Database SELECT   base_sname &#8220;OWNER&#8221;, COUNT (UNIQUE base_oname) NUMBER_OF_OBJECTS FROM   REPCAT$_GENERATED GROUP BY   base_sname; List number of replicated objects with corresponding groups SELECT   gname Replication_Group, COUNT ( * ) NUMBER_OF_TABLES FROM   REPCAT$_REPOBJECT WHERE   TYPE = 2 GROUP BY   gname ORDER BY   1;                                                              &#8212; List number of replicated objects SELECT   COUNT ( [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/replication-sql-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Push Replication Group to NORMAL Status in an Exceptional Case</title>
		<link>http://www.oracledbasupport.co.uk/push-replication-group-to-normal-status-in-an-exceptional-case/</link>
		<comments>http://www.oracledbasupport.co.uk/push-replication-group-to-normal-status-in-an-exceptional-case/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 12:44:44 +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/26/push-replication-group-to-normal-status-in-an-exceptional-case/</guid>
		<description><![CDATA[The dbms_repcat.resume_master_activity() package has an override parameter that defaults to FALSE. This parameter can be set to TRUE to allow the group to become normal even if there are pending admin requests in DBA_REPCATLOG for this group. This override should ONLY be used in extreme emergency situations, and ONLY when the ramifications and resolution of [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/push-replication-group-to-normal-status-in-an-exceptional-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Monitoring the Deferred Transactions Queue</title>
		<link>http://www.oracledbasupport.co.uk/monitoring-the-deferred-transactions-queue/</link>
		<comments>http://www.oracledbasupport.co.uk/monitoring-the-deferred-transactions-queue/#comments</comments>
		<pubDate>Mon, 22 Sep 2008 11:30:10 +0000</pubDate>
		<dc:creator>Sagar Patil</dc:creator>
				<category><![CDATA[Advanced Replication]]></category>
		<category><![CDATA[Daily Admin]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[interval]]></category>
		<category><![CDATA[number]]></category>
		<category><![CDATA[repA]]></category>
		<category><![CDATA[repadmin]]></category>
		<category><![CDATA[Setup]]></category>
		<category><![CDATA[Start]]></category>
		<category><![CDATA[Transactions]]></category>

		<guid isPermaLink="false">http://www.oracledbasupport.co.uk/2008/09/22/monitoring-the-deferred-transactions-queue/</guid>
		<description><![CDATA[Listing the Number of Deferred Transactions for Each Destination Master Site Determining the Next Start Time and Interval for the Push Jobs Determining the Total Number of Transactions Queued for Propagation 1. Listing the Number of Deferred Transactions for Each Destination Master Site CONNECT repadmin/repadmin@repA COLUMN DEST HEADING &#8216;Destination&#8217; FORMAT A45 COLUMN TRANS HEADING &#8216;Def [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/monitoring-the-deferred-transactions-queue/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>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>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>Oracle Advanced Replication &#8211; Administration Tasks (Concepts/no SQL)</title>
		<link>http://www.oracledbasupport.co.uk/oracle-advanced-replication-administration-tasks/</link>
		<comments>http://www.oracledbasupport.co.uk/oracle-advanced-replication-administration-tasks/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 09:29:56 +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/08/oracle-advanced-replication-administration-tasks/</guid>
		<description><![CDATA[Suspending Master Activity Resume Master Activity Applying Administration Tasks Applying Transactions Removing Transactions Removing Errors Drop Replication Object Suspending Master Activity Whenever some administration tasks needs to be taken, such as adding an object to a replication group, you must suspend master activity for the nominated group. This will put the group on the master [...]]]></description>
		<wfw:commentRss>http://www.oracledbasupport.co.uk/oracle-advanced-replication-administration-tasks/feed/</wfw:commentRss>
		<slash:comments>0</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>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>

