<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Testing a Physical Standby Database in Oracle 10g</title>
	<atom:link href="http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/</link>
	<description>News and views from Pythian DBAs</description>
	<lastBuildDate>Fri, 10 Feb 2012 13:01:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Marcelo Lopes</title>
		<link>http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/#comment-473159</link>
		<dc:creator>Marcelo Lopes</dc:creator>
		<pubDate>Tue, 09 Nov 2010 22:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1405/testing-a-physical-standby-database-in-oracle-10g#comment-473159</guid>
		<description>Hi Sanhay and Martin.

Both options are valid for 11G and later. Just keep in mind that they require Enterprise Edition version.

&quot;A snapshot standby database is a fully update-able standby database that is created by converting a physical standby database into a snapshot standby database.

A snapshot Standby is open in the read-write mode and hence it is possible to process transactions independently of the primary database. At the same time, it maintains protection by continuing to receive data from the production database, archiving it for later use.

Using a single command changes made while read-write mode can be discarded and quickly resynchronize the standby with the primary database.&quot; Met.note [ID 443720.1]

I haven&#039;t tested the snapshot standby. Will do and consider creating a blog about it.</description>
		<content:encoded><![CDATA[<p>Hi Sanhay and Martin.</p>
<p>Both options are valid for 11G and later. Just keep in mind that they require Enterprise Edition version.</p>
<p>&#8220;A snapshot standby database is a fully update-able standby database that is created by converting a physical standby database into a snapshot standby database.</p>
<p>A snapshot Standby is open in the read-write mode and hence it is possible to process transactions independently of the primary database. At the same time, it maintains protection by continuing to receive data from the production database, archiving it for later use.</p>
<p>Using a single command changes made while read-write mode can be discarded and quickly resynchronize the standby with the primary database.&#8221; Met.note [ID 443720.1]</p>
<p>I haven&#8217;t tested the snapshot standby. Will do and consider creating a blog about it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Bach</title>
		<link>http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/#comment-472673</link>
		<dc:creator>Martin Bach</dc:creator>
		<pubDate>Mon, 08 Nov 2010 10:15:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1405/testing-a-physical-standby-database-in-oracle-10g#comment-472673</guid>
		<description>@Sanhay:

In 11.1 and later you can use the snapshot standby to achieve the same without knowing about the details.

It has the added advantage that additional standby databases don&#039;t start receiving archived logs from the newly activated standby.

Cheers,

Martin</description>
		<content:encoded><![CDATA[<p>@Sanhay:</p>
<p>In 11.1 and later you can use the snapshot standby to achieve the same without knowing about the details.</p>
<p>It has the added advantage that additional standby databases don&#8217;t start receiving archived logs from the newly activated standby.</p>
<p>Cheers,</p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sanhay</title>
		<link>http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/#comment-431653</link>
		<dc:creator>Sanhay</dc:creator>
		<pubDate>Fri, 21 May 2010 15:05:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1405/testing-a-physical-standby-database-in-oracle-10g#comment-431653</guid>
		<description>Are you able to create the configuration as above in 11g with dgmgrl and can share

Great Work and excellent presentation to utilize the feature which otherwise people like me don&#039;t realize it</description>
		<content:encoded><![CDATA[<p>Are you able to create the configuration as above in 11g with dgmgrl and can share</p>
<p>Great Work and excellent presentation to utilize the feature which otherwise people like me don&#8217;t realize it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marcelo Lopes</title>
		<link>http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/#comment-391683</link>
		<dc:creator>Marcelo Lopes</dc:creator>
		<pubDate>Wed, 09 Dec 2009 20:25:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1405/testing-a-physical-standby-database-in-oracle-10g#comment-391683</guid>
		<description>Thank you Don for the remind. It has to be done on the following step:

1. Flashback to the restore point:

SQL&gt; STARTUP MOUNT FORCE;
SQL&gt; FLASHBACK DATABASE TO RESTORE POINT TEST_NEW_FEATURE;
SQL&gt; ALTER DATABASE CONVERT TO PHYSICAL STANDBY;
SQL&gt; ALTER SYSTEM SET DG_BROKER_START=TRUE;
SQL&gt; STARTUP MOUNT FORCE;
SQL&gt; DROP RESTORE POINT TEST_NEW_FEATURE;</description>
		<content:encoded><![CDATA[<p>Thank you Don for the remind. It has to be done on the following step:</p>
<p>1. Flashback to the restore point:</p>
<p>SQL&gt; STARTUP MOUNT FORCE;<br />
SQL&gt; FLASHBACK DATABASE TO RESTORE POINT TEST_NEW_FEATURE;<br />
SQL&gt; ALTER DATABASE CONVERT TO PHYSICAL STANDBY;<br />
SQL&gt; ALTER SYSTEM SET DG_BROKER_START=TRUE;<br />
SQL&gt; STARTUP MOUNT FORCE;<br />
SQL&gt; DROP RESTORE POINT TEST_NEW_FEATURE;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don Seiler</title>
		<link>http://www.pythian.com/news/1405/testing-a-physical-standby-database-in-oracle-10g/#comment-332474</link>
		<dc:creator>Don Seiler</dc:creator>
		<pubDate>Thu, 22 Jan 2009 22:48:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.pythian.com/blogs/1405/testing-a-physical-standby-database-in-oracle-10g#comment-332474</guid>
		<description>Don&#039;t forget to drop the restore point at the end, or your FRA will fill up as it continues flashback logging.
&lt;pre&gt;
SQL&gt; DROP RESTORE POINT TEST_NEW_FEATURE;

Restore point dropped.
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>Don&#8217;t forget to drop the restore point at the end, or your FRA will fill up as it continues flashback logging.</p>
<pre>
SQL> DROP RESTORE POINT TEST_NEW_FEATURE;

Restore point dropped.
</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

