<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Saad Shujaat's Oracle Blog</title>
	<atom:link href="http://saadshujaatoramentary.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://saadshujaatoramentary.wordpress.com</link>
	<description>These are my views related to Oracle</description>
	<lastBuildDate>Wed, 23 Mar 2011 08:17:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='saadshujaatoramentary.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Saad Shujaat's Oracle Blog</title>
		<link>http://saadshujaatoramentary.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://saadshujaatoramentary.wordpress.com/osd.xml" title="Saad Shujaat&#039;s Oracle Blog" />
	<atom:link rel='hub' href='http://saadshujaatoramentary.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Migration of DB2 Server from Version 8.2 to Version 9.5</title>
		<link>http://saadshujaatoramentary.wordpress.com/2011/03/23/migration-of-db2-server-from-version-8-2-to-version-9-5/</link>
		<comments>http://saadshujaatoramentary.wordpress.com/2011/03/23/migration-of-db2-server-from-version-8-2-to-version-9-5/#comments</comments>
		<pubDate>Wed, 23 Mar 2011 07:35:28 +0000</pubDate>
		<dc:creator>Saad</dc:creator>
				<category><![CDATA[DB2]]></category>
		<category><![CDATA[DB2 8.2]]></category>
		<category><![CDATA[DB2 9.5]]></category>
		<category><![CDATA[Migrating DB2]]></category>

		<guid isPermaLink="false">http://saadshujaatoramentary.wordpress.com/?p=24</guid>
		<description><![CDATA[The migration of DB2 Server from Version 8.2 to Version 9.5 can be a seamless experience provided all the prerequisites have been fully met. In a nut shell the DB2 Server migration task can be summarized as 1-      Install the DB2 Software 2-      Migrate the existing instances 3-      Migrate the existing DB2 Administration Server 4-      [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=24&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The migration of DB2 Server from Version 8.2 to Version 9.5 can be a seamless experience provided all the prerequisites have been fully met.</p>
<p>In a nut shell the DB2 Server migration task can be summarized as</p>
<p>1-      Install the DB2 Software</p>
<p>2-      Migrate the existing instances</p>
<p>3-      Migrate the existing DB2 Administration Server</p>
<p>4-      Migrate the existing databases</p>
<p>5-      Additional post migration tasks if applicable</p>
<p>DB2 instances are migrated using the command <em>db2imigr</em>. The <em>fencedID</em> has to be provided along with the Instance name. Below is an example</p>
<p><em>root@db2dev /opt/IBM/db2/V9.5 -&gt;$DB2DIR/instance/db2imigr -u db2fenc1 ivlm</em></p>
<p><em>db2ckmig was successful. Database(s) can be migrated.</em></p>
<p><em>DBI1070I  Program db2imigr completed successfully.</em></p>
<p>A way the fencedID can be checked is while logging in using the instance owner and checking as follows;</p>
<p><em>ivlm@db2dev /home/ivlm -&gt;ls -l ~/sqllib/adm/.fenced</em></p>
<p><em>-r&#8211;r&#8211;r&#8211;    1 db2fenc1 db2fgrp1          0 Mar 13 08:52 /home/ivlm/sqllib/adm/.fenced</em></p>
<p>Now the DB2 Administration Server can be easily migrated as shown below</p>
<p><em>root@db2dev /opt/IBM/db2/V9.5 -&gt;$DB2DIR/instance/dasmigr</em></p>
<p><em>SQL4410W  The DB2 Administration Server is not active.</em></p>
<p><em>SQL4406W  The DB2 Administration Server was started successfully.</em></p>
<p><em>DBI1070I  Program dasmigr completed successfully. </em></p>
<p>Finally the DB2 databases have to be migrated and only then the DB2 databases will have an open status.</p>
<p><em>ivlm@db2dev /home/ivlm -&gt; </em>db2 MIGRATE DATABASE ILMLOGS USER <em>ivlm</em> USING <em>ivlm123</em></p>
<p><em> </em></p>
<p>It is important to note that the user being used should have the SYSADM authority.</p>
<p>Once the database migration is successful the connection can be made to the database for verification</p>
<p>db2 =&gt; connect to ILMLOGS</p>
<p>&nbsp;</p>
<p>Database Connection Information</p>
<p>&nbsp;</p>
<p>Database server        = DB2/AIX64 9.5.1</p>
<p>SQL authorization ID   = IVLM</p>
<p>Local database alias   = ILMLOGS</p>
<p><em> </em></p>
<p>&nbsp;</p>
<p><em>And then the below query can be executed</em></p>
<pre>db2  "select * from syscat.dbauth"</pre>
<p><em> </em></p>
<p>Alternatively level of db2 can also be checked</p>
<p>&nbsp;</p>
<p><em>ivlm@db2dev /home/ivlm -&gt;db2level</em></p>
<p><em>DB21085I  Instance &#8220;ivlm&#8221; uses &#8220;64&#8243; bits and DB2 code release &#8220;SQL09051&#8243; with</em></p>
<p><em>level identifier &#8220;03020107&#8243;.</em></p>
<p><em>Informational tokens are &#8220;DB2 v9.5.0.1&#8243;, &#8220;s080328&#8243;, &#8220;U814639&#8243;, and Fix Pack</em></p>
<p><em>&#8220;1&#8243;.</em></p>
<p><em>Product is installed at &#8220;/opt/IBM/db2/V9.5&#8243;.</em></p>
<p>The above contents are only to provide an overview; the IBM documentation has to be followed in order to understand the complete and full steps for migration.</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saadshujaatoramentary.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saadshujaatoramentary.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saadshujaatoramentary.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saadshujaatoramentary.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saadshujaatoramentary.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saadshujaatoramentary.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saadshujaatoramentary.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saadshujaatoramentary.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=24&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saadshujaatoramentary.wordpress.com/2011/03/23/migration-of-db2-server-from-version-8-2-to-version-9-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b04d22c93a70b6ef50ae72625f56ed2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ssk5</media:title>
		</media:content>
	</item>
		<item>
		<title>Cloning Oracle EBS using RMAN</title>
		<link>http://saadshujaatoramentary.wordpress.com/2010/10/21/cloning-oracle-ebs-using-rman/</link>
		<comments>http://saadshujaatoramentary.wordpress.com/2010/10/21/cloning-oracle-ebs-using-rman/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 06:06:59 +0000</pubDate>
		<dc:creator>Saad</dc:creator>
				<category><![CDATA[Oracle EBS R12]]></category>
		<category><![CDATA[Clone]]></category>
		<category><![CDATA[R12]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://saadshujaatoramentary.wordpress.com/?p=11</guid>
		<description><![CDATA[Oracle My Support Document: Cloning Oracle Applications Release 12 with Rapid Clone: Doc ID:  406982.1 describes advance ways to clone Oracle EBS. Section 6 of the document illustrates the way to clone an Oracle EBS database separately. I tried using the same process on an Oracle Database for EBS R12 in no archivelog mode on IBM AIX [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=11&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Oracle My Support Document: Cloning Oracle Applications Release 12 with Rapid Clone: Doc ID:  406982.1 describes advance ways to clone Oracle EBS. Section 6 of the document illustrates the way to clone an Oracle EBS database separately.</p>
<p>I tried using the same process on an Oracle Database for EBS R12 in no archivelog mode on IBM AIX where I used RMAN to backup and restore.</p>
<p>First the database was restarted and placed in a nomount state.</p>
<p><em>SQL&gt; shutdown;</em></p>
<p><em>SQL&gt; startup nomount;</em></p>
<p>Copied the controlfiles and redo logs to a backup location.  Brought the database in mount state as;</p>
<p><em>SQL&gt; alter databse mount;</em></p>
<p>Connected with RMAN on the source database and  took a backup.</p>
<p><em>run</em></p>
<p><em>{</em></p>
<p><em> allocate channel c1 type disk;</em></p>
<p><em> allocate channel c2 type disk;</em></p>
<p><em> backup as compressed backupset</em></p>
<p><em> filesperset 30</em></p>
<p><em>format &#8216;/dev1/backup/%d_%u.bkp&#8217;</em></p>
<p><em> database;</em></p>
<p><em>}</em></p>
<p>Once backup was completed then the backup files were moved to another server. On the target server the adcfgclone script had to be executed as;</p>
<p><em>oradev@test /dev2/oracle/proddb/10.2.0/appsutil/clone/bin -&gt;perl adcfgclone.pl dbTechStack</em></p>
<p>Once script completed the listener would be started.  Now the parameter had to editted with the new location of the controlfiles and the database was mounted and then RMAN backups were cataloged as;</p>
<p><em>connected to target database: CLONE (DBID=52110679, not open)</em></p>
<p><em>RMAN&gt; run<br />
2&gt; {<br />
3&gt; catalog backuppiece &#8216;/dev5/backup/CLONE_06lpi3e4.bkp&#8217;;<br />
4&gt; catalog backuppiece &#8216;/dev5/backup/CLONE_0glpi5jg.bkp&#8217;;<br />
5&gt; catalog backuppiece &#8216;/dev5/backup/CLONE_0elpi55n.bkp&#8217;;<br />
6&gt; catalog backuppiece &#8216;/dev5a/backup/CLONE_0flpi58h.bkp&#8217;;</em></p>
<p>After cataloging the RMAN backups. The restore process was started. First identiying the new locations, restoring the files and then recovering the files.</p>
<p><em>RMAN&gt; run<br />
2&gt; {<br />
3&gt; set newname for datafile 396 to &#8216;/dev10/oracle/proddata/lotus.dbf&#8217;;<br />
4&gt; set newname for datafile 380 to &#8216;/dev10/oracle/proddata/system11.dbf&#8217;;<br />
5&gt; set newname for datafile 379 to &#8216;/dev10/oracle/proddata/system10.dbf&#8217;;<br />
6&gt; set newname for datafile 1 to &#8216;/dev10/oracle/proddata/system01.dbf&#8217;;<br />
7&gt; set newname for datafile 2 to &#8216;/dev10/oracle/proddata/system02.dbf&#8217;;<br />
8&gt; set newname for datafile 3 to &#8216;/dev10/oracle/proddata/system03.dbf&#8217;;</em></p>
<p><em>450&gt; restore database;<br />
451&gt; switch datafile all;<br />
452&gt; recover database;</em></p>
<p><em>453&gt;}</em></p>
<p><em>executing command: SET NEWNAME</em></p>
<p><em>executing command: SET NEWNAME</em></p>
<p><em>executing command: SET NEWNAME</em></p>
<p><em>executing command: SET NEWNAME</em></p>
<p><em>executing command: SET NEWNAME</em></p>
<p><em>Starting restore at 06-OCT-10<br />
using channel ORA_DISK_1</em></p>
<p><em>channel ORA_DISK_1: starting datafile backupset restore<br />
channel ORA_DISK_1: specifying datafile(s) to restore from backup set<br />
restoring datafile 00204 to /dev11/oracle/proddata/oex01.dbf</em></p>
<p>Now the database had been restored and recovered. Then the redologs were checked</p>
<p><em>SQL&gt; SELECT member FROM v$logfile;</em></p>
<p><em>MEMBER<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
/qa11/oracle/proddata/log04a.dbf<br />
/qa11/oracle/proddata/log04b.dbf</em></p>
<p>They were being shown in the old locations so had to be updated with new ones as;<br />
<em>SQL&gt; ALTER DATABASE RENAME FILE &#8216;/qa11/oracle/proddata/log04a.dbf&#8217; to &#8216;/dev11/oracle/proddata/log04a.dbf&#8217;;</em></p>
<p><em>Database altered.</em></p>
<p><em>SQL&gt; ALTER DATABASE RENAME FILE &#8216;/qa11/oracle/proddata/log04b.dbf&#8217; to &#8216;/dev11/oracle/proddata/log04b.dbf&#8217;;</em></p>
<p><em>Database altered.</em></p>
<p>The old temp files had to be dropped and then recreated again.  After recreating the temp files the database could be opened</p>
<p><em>SQL&gt; alter database open;</em></p>
<p><em>Database altered.</em></p>
<p>After the database had been opened, a script to update the libarry had to be executed as also mentioned in Doc ID 406982.1</p>
<p><em>SQL&gt; @/dev2/oracle/proddb/10.2.0/appsutil/install/CLONE_dev/adupdlib.sql so</em></p>
<p><em>PL/SQL procedure successfully completed.<br />
SQL&gt; exit</em></p>
<p>Finally the adcfgclone script had to be executed  along with the database context file as;</p>
<p><em>oradev@test /dev2/oracle/proddb/10.2.0/appsutil/clone/bin -&gt;perl adfgcloneclone.pl dbconfig /dev2/oracle/proddb/10.2.0/appsutil/CLONE_dev.xml </em></p>
<p>Once the script completes, the database and listener were started. The complete steps have been documented and listed in Oracle My Support Doc ID: 406982.1 for cloning Oracle EBS.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saadshujaatoramentary.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saadshujaatoramentary.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saadshujaatoramentary.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saadshujaatoramentary.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saadshujaatoramentary.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saadshujaatoramentary.wordpress.com/11/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saadshujaatoramentary.wordpress.com/11/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saadshujaatoramentary.wordpress.com/11/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=11&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saadshujaatoramentary.wordpress.com/2010/10/21/cloning-oracle-ebs-using-rman/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b04d22c93a70b6ef50ae72625f56ed2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ssk5</media:title>
		</media:content>
	</item>
		<item>
		<title>11g Data Recovery Advisor : Sys datafiles and Controlfiles Recovery</title>
		<link>http://saadshujaatoramentary.wordpress.com/2008/07/10/11g-data-recovery-advisor-sys-datafiles-and-controlfiles-recovery/</link>
		<comments>http://saadshujaatoramentary.wordpress.com/2008/07/10/11g-data-recovery-advisor-sys-datafiles-and-controlfiles-recovery/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 19:02:03 +0000</pubDate>
		<dc:creator>Saad</dc:creator>
				<category><![CDATA[11g Database]]></category>
		<category><![CDATA[Data Recovery Advisor]]></category>
		<category><![CDATA[Oracle 11g]]></category>
		<category><![CDATA[Recovery]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://saadshujaatoramentary.wordpress.com/?p=8</guid>
		<description><![CDATA[Introduction Oracle 11g Database has been full of new and improved enhancements so it wasn’t a surprise to come across Data Recovery Advisor. It is an amazing tool that analyzes, proposes and implements solutions for data failures. It has command line and GUI interface. GUI interface can be accessed through Oracle EM Grid and DB Console [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=8&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction </strong></p>
<p>Oracle 11g Database has been full of new and improved enhancements so it wasn’t a surprise to come across Data Recovery Advisor.<br />
It is an amazing tool that analyzes, proposes and implements solutions for data failures.<br />
It has command line and GUI interface. GUI interface can be accessed through Oracle EM Grid and DB Console while the RMAN command line interface includes DRA commands.<br />
Oracle describes a basic five step process for fixings issues with DRA. These are;</p>
<p>1. List the failures<br />
2. Validate the database (optional)<br />
3. Establish the possible options<br />
4. Consider an option<br />
5. Verify or check for remaining failures</p>
<p>Now I will see how Data Recovery Advisor can perform on critical recoveries. We are considering two scenarios, first scenario is that the system datafile has been lost and the second scenario in which all the controlfiles have been lost. In both cases prior RMAN backups exist.</p>
<p><strong>Scenario: System datafile has been lost</strong></p>
<p><code>Recovery Manager: Release 11.1.0.6.0 - Production on Fri Jul 11 09:27:14 2008</code></p>
<p>Copyright (c) 1982, 2007, Oracle. All rights reserved.</p>
<p>RMAN&gt; connect target /</p>
<p>connected to target database: DEV11G (DBID=3891859867, not open)</p>
<p>RMAN&gt; list failure;</p>
<p>using target database control file instead of recovery catalog<br />
List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
42 CRITICAL OPEN 11-JUL-08 System datafile 1: &#8216;F:\APP\ADMINISTRATOR\ORADATA\DEV11G\SYSTEM01.DBF&#8217; is missing</p>
<p>Obviously the database could not open at this point. We have used the command LIST FAILURE to review what the failures are.</p>
<p>Going a bit further seeing how this will impact the database we can use LIST FAILURE DETAIL as follows;</p>
<p><code>RMAN&gt; list failure detail;</code></p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
42 CRITICAL OPEN 11-JUL-08 System datafile 1: &#8216;F:\APP\ADMINISTRATOR\ORADATA\DEV11G\SYSTEM01.DBF&#8217; is missing<br />
Impact: Database cannot be opened</p>
<p>As already mentioned the database cannot be opened which has made this as a CRITICAL priority.</p>
<p><code>RMAN&gt; advise failure;</code></p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
42 CRITICAL OPEN 11-JUL-08 System datafile 1: &#8216;F:\APP\ADMINISTR<br />
ATOR\ORADATA\DEV11G\SYSTEM01.DBF&#8217; is missing<br />
Impact: Database cannot be opened</p>
<p>analyzing automatic repair options; this may take some time<br />
allocated channel: ORA_DISK_1<br />
channel ORA_DISK_1: SID=152 device type=DISK<br />
analyzing automatic repair options complete</p>
<p>Mandatory Manual Actions<br />
========================<br />
no manual actions available</p>
<p>Optional Manual Actions<br />
=======================<br />
1. If file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\SYSTEM01.DBF was unintentionally renamed or moved, restore it</p>
<p>Automated Repair Options<br />
========================<br />
Option Repair Description<br />
&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
1 Restore and recover datafile 1<br />
Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3619189128.hm</p>
<p>Now I have used ADVISE FAILURE to see as to how can I repair or fix this issue. A list of options have been presented these are MADATORY MANUAL ACTIONS but none are required in this case, OPTIONAL MANUNAL ACTIONS and AUTOMATED REPAIR OPTIONS. We will consider AUTOMATED REPAIR OPTIONS; this includes simply executing the following script;<br />
f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3619189128.hm</p>
<p><code>RMAN&gt; repair failure preview;</code></p>
<p>Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3619189128.hm</p>
<p>contents of repair script:<br />
# restore and recover datafile<br />
restore datafile 1;<br />
recover datafile 1;</p>
<p>Now we have displayed the contents of the script with REPAIR FAILURE PREVIEW command. We are completely aware of the recovery process as it is transparent.</p>
<p><code>RMAN&gt; repair failure;</code></p>
<p>Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3619189128hm</p>
<p>contents of repair script:<br />
# restore and recover datafile<br />
restore datafile 1;<br />
recover datafile 1;</p>
<p>Do you really want to execute the above repair (enter YES or NO)? YES<br />
executing repair script</p>
<p>Starting restore at 11-JUL-08<br />
using channel ORA_DISK_1</p>
<p>channel ORA_DISK_1: starting datafile backup set restore<br />
channel ORA_DISK_1: specifying datafile(s) to restore from backup set<br />
channel ORA_DISK_1: restoring datafile 00001 to F:\APP\ADMINISTRATOR\ORADATA\DE<br />
11G\SYSTEM01.DBF<br />
channel ORA_DISK_1: reading from backup piece F:\APP\ADMINISTRATOR\FLASH_RECOVE<br />
Y_AREA\DEV11G\BACKUPSET\2008_07_11\O1_MF_NNNDF_TAG20080711T092430_47H2B04D_.BKP<br />
channel ORA_DISK_1: piece handle=F:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\DEV11<br />
\BACKUPSET\2008_07_11\O1_MF_NNNDF_TAG20080711T092430_47H2B04D_.BKP tag=TAG20080<br />
11T092430<br />
channel ORA_DISK_1: restored backup piece 1<br />
channel ORA_DISK_1: restore complete, elapsed time: 00:00:16<br />
Finished restore at 11-JUL-08</p>
<p>Starting recover at 11-JUL-08<br />
using channel ORA_DISK_1</p>
<p>starting media recovery<br />
media recovery complete, elapsed time: 00:00:01</p>
<p>Finished recover at 11-JUL-08<br />
repair failure complete</p>
<p>Do you want to open the database (enter YES or NO)? YES<br />
database opened</p>
<p>Finally we executed the fix using REPAIR FAILURE and the repair has been successful.</p>
<p><code>RMAN&gt; list failure closed;</code></p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
42 CRITICAL CLOSED 11-JUL-08 System datafile 1: &#8216;F:\APP\ADMINISTR<br />
ATOR\ORADATA\DEV11G\SYSTEM01.DBF&#8217; is missing</p>
<p>After opening the database we check again for any failures by using LIST FAILURE command. We can see that the STATUS had been changed from OPEN to CLOSED as the issue has been resolved.</p>
<p>Now we see the loss of controlfiles recovery using DRA.</p>
<p><strong>Scenario: All controlfiles have been lost </strong></p>
<p><code>RMAN&gt; list failure;</code></p>
<p>using target database control file instead of recovery catalog<br />
List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
113 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL01.CTL is missing<br />
110 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL02.CTL is missing<br />
107 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL03.CTL is missing</p>
<p>This is an additional step only to review that the precise impact is being shown or it could even be considered as part of step one.</p>
<p><code>RMAN&gt; list failure detail;</code></p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
113 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\OR<br />
ADATA\DEV11G\CONTROL01.CTL is missing<br />
Impact: Database cannot be mounted</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
110 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\OR<br />
ADATA\DEV11G\CONTROL02.CTL is missing<br />
Impact: Database cannot be mounted</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
107 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\OR<br />
ADATA\DEV11G\CONTROL03.CTL is missing<br />
Impact: Database cannot be mounted</p>
<p>RMAN&gt; advise failure;</p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
113 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\OR<br />
ADATA\DEV11G\CONTROL01.CTL is missing<br />
Impact: Database cannot be mounted</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
110 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\OR<br />
ADATA\DEV11G\CONTROL02.CTL is missing<br />
Impact: Database cannot be mounted</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
107 CRITICAL OPEN 11-JUL-08 Control file F:\APP\ADMINISTRATOR\OR<br />
ADATA\DEV11G\CONTROL03.CTL is missing<br />
Impact: Database cannot be mounted</p>
<p>analyzing automatic repair options; this may take some time<br />
allocated channel: ORA_DISK_1<br />
channel ORA_DISK_1: SID=152 device type=DISK<br />
analyzing automatic repair options complete</p>
<p>Mandatory Manual Actions<br />
========================<br />
no manual actions available</p>
<p>Optional Manual Actions<br />
=======================<br />
1. If file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL01.CTL was unintentionally<br />
renamed or moved, restore it<br />
2. If file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL02.CTL was unintentionally<br />
renamed or moved, restore it<br />
3. If file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL03.CTL was unintentionally<br />
renamed or moved, restore it</p>
<p>Automated Repair Options<br />
========================<br />
Option Repair Description<br />
&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
1 Restore a backup control file<br />
Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_4252270918.hm</p>
<p>RMAN&gt; repair failure preview;</p>
<p>Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_4252270918.<br />
hm</p>
<p>contents of repair script:<br />
# restore control file<br />
restore controlfile from autobackup;<br />
sql &#8216;alter database mount&#8217;;</p>
<p>RMAN&gt; repair failure;</p>
<p>Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_4252270918.hm</p>
<p>contents of repair script:<br />
# restore control file<br />
restore controlfile from autobackup;<br />
sql &#8216;alter database mount&#8217;;</p>
<p>Do you really want to execute the above repair (enter YES or NO)? YES<br />
executing repair script</p>
<p>Starting restore at 11-JUL-08<br />
using channel ORA_DISK_1</p>
<p>recovery area destination: F:\app\Administrator\flash_recovery_area<br />
database name (or database unique name) used for search: DEV11G<br />
channel ORA_DISK_1: AUTOBACKUP F:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\DEV11G\A<br />
UTOBACKUP\2008_07_11\O1_MF_S_659784297_47H2BTVC_.BKP found in the recovery area<br />
AUTOBACKUP search with format &#8220;%F&#8221; not attempted because DBID was not set<br />
channel ORA_DISK_1: restoring control file from AUTOBACKUP F:\APP\ADMINISTRATOR\<br />
FLASH_RECOVERY_AREA\DEV11G\AUTOBACKUP\2008_07_11\O1_MF_S_659784297_47H2BTVC_.BKP</p>
<p>channel ORA_DISK_1: control file restore from AUTOBACKUP complete<br />
output file name=F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL01.CTL<br />
output file name=F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL02.CTL<br />
output file name=F:\APP\ADMINISTRATOR\ORADATA\DEV11G\CONTROL03.CTL<br />
Finished restore at 11-JUL-08</p>
<p>sql statement: alter database mount<br />
released channel: ORA_DISK_1<br />
repair failure complete</p>
<p>At this point, the control files have been restored and the database reached in mount state.</p>
<p><code>RMAN&gt; list failure;</code></p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
437 CRITICAL OPEN 11-JUL-08 System datafile 1: &#8216;F:\APP\ADMINISTRATOR\ORADATA\DEV11G\SYSTEM01.DBF&#8217; needs media recovery<br />
305 CRITICAL OPEN 11-JUL-08 Control file needs media recovery<br />
142 HIGH OPEN 11-JUL-08 One or more on-system datafiles need media recovery</p>
<p>This time new failures have been determined. So again we execute the ADVISE FAILURE.</p>
<p><code>RMAN&gt; advise failure;</code></p>
<p>Starting implicit crosscheck backup at 11-JUL-08<br />
allocated channel: ORA_DISK_1<br />
channel ORA_DISK_1: SID=152 device type=DISK<br />
Crosschecked 3 objects<br />
Finished implicit crosscheck backup at 11-JUL-08</p>
<p>Starting implicit crosscheck copy at 11-JUL-08<br />
using channel ORA_DISK_1<br />
Finished implicit crosscheck copy at 11-JUL-08</p>
<p>searching for all files in the recovery area<br />
cataloging files&#8230;<br />
cataloging done</p>
<p>List of Cataloged Files<br />
=======================<br />
File Name: F:\APP\ADMINISTRATOR\FLASH_RECOVERY_AREA\DEV11G\AUTOBACKUP\2008_07_11<br />
\O1_MF_S_659786902_47H4W8C7_.BKP</p>
<p>List of Database Failures<br />
=========================</p>
<p>Failure ID Priority Status Time Detected Summary<br />
&#8212;&#8212;&#8212;- &#8212;&#8212;&#8211; &#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;- &#8212;&#8212;-<br />
437 CRITICAL OPEN 11-JUL-08 System datafile 1: &#8216;F:\APP\ADMINISTRATOR\ORADATA\DEV11G\SYSTEM01.DBF&#8217; needs media recovery<br />
305 CRITICAL OPEN 11-JUL-08 Control file needs media recovery<br />
142 HIGH OPEN 11-JUL-08 One or more non-system datafiles need media recovery</p>
<p>analyzing automatic repair options; this may take some time<br />
using channel ORA_DISK_1<br />
analyzing automatic repair options complete</p>
<p>Mandatory Manual Actions<br />
========================<br />
no manual actions available</p>
<p>Optional Manual Actions<br />
=======================<br />
1. If you restored the wrong version of data file F:\APP\ADMINISTRATOR\ORADATA\D<br />
EV11G\SYSTEM01.DBF, then replace it with the correct one<br />
2. If you have the correct version of the control file, then shutdown the database and replace the old control file<br />
3. If you restored the wrong version of data file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\SYSAUX01.DBF, then replace it with the correct one<br />
4. If you restored the wrong version of data file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\UNDOTBS01.DBF, then replace it with the correct one<br />
5. If you restored the wrong version of data file F:\APP\ADMINISTRATOR\ORADATA\DEV11G\USERS01.DBF, then replace it with the correct one</p>
<p>Automated Repair Options<br />
========================<br />
Option Repair Description<br />
&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
1 Recover database<br />
Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3650007651.hm</p>
<p>A new script has been created which can be reviewed as follows;</p>
<p><code>RMAN&gt; repair failure preview;</code></p>
<p>Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3650007651.hm</p>
<p>contents of repair script:<br />
# recover database<br />
recover database;<br />
alter database open resetlogs;</p>
<p>Finally executing the repair script as follows;</p>
<p><code>RMAN&gt; repair failure;</code></p>
<p>Strategy: The repair includes complete media recovery with no data loss<br />
Repair script: f:\app\administrator\diag\rdbms\dev11g\dev11g\hm\reco_3650007651.<br />
hm</p>
<p>contents of repair script:<br />
# recover database<br />
recover database;<br />
alter database open resetlogs;</p>
<p>Do you really want to execute the above repair (enter YES or NO)? YES<br />
executing repair script</p>
<p>Starting recover at 11-JUL-08<br />
using channel ORA_DISK_1</p>
<p>starting media recovery</p>
<p>archived log for thread 1 with sequence 1 is already on disk as file F:\APP\ADMI<br />
NISTRATOR\ORADATA\DEV11G\REDO01.LOG<br />
archived log file name=F:\APP\ADMINISTRATOR\ORADATA\DEV11G\REDO01.LOG thread=1 s<br />
equence=1<br />
media recovery complete, elapsed time: 00:00:01<br />
Finished recover at 11-JUL-08</p>
<p>database opened<br />
repair failure complete</p>
<p>Repair has been successful once again.</p>
<p>In conclusion to the control files recovery we have seen that the DRA process was divided into two portions.<br />
First script executed;</p>
<p>1. RESTORE CONTROLFILE FROM AUTOBACKUP<br />
2. ALTER DATABSE MOUNT</p>
<p>Second script executed;</p>
<p>1. RECOVER DATABASE<br />
2. ALTER DATABASE OPEN RESETLOGS</p>
<p>DRA seems to be a reliable and an effective tool for database recovery.</p>
<p>Additional Resources;</p>
<p>http://download.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmrepai.htm</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saadshujaatoramentary.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saadshujaatoramentary.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saadshujaatoramentary.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saadshujaatoramentary.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saadshujaatoramentary.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saadshujaatoramentary.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saadshujaatoramentary.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saadshujaatoramentary.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saadshujaatoramentary.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saadshujaatoramentary.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=8&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saadshujaatoramentary.wordpress.com/2008/07/10/11g-data-recovery-advisor-sys-datafiles-and-controlfiles-recovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b04d22c93a70b6ef50ae72625f56ed2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ssk5</media:title>
		</media:content>
	</item>
		<item>
		<title>Understanding &#8216;Backup’- Part I</title>
		<link>http://saadshujaatoramentary.wordpress.com/2008/06/23/understanding-backing-%e2%80%98up%e2%80%99-part-i/</link>
		<comments>http://saadshujaatoramentary.wordpress.com/2008/06/23/understanding-backing-%e2%80%98up%e2%80%99-part-i/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 13:25:27 +0000</pubDate>
		<dc:creator>Saad</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Application Server]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[EBS]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://saadshujaatoramentary.wordpress.com/?p=4</guid>
		<description><![CDATA[Introduction Backup is a very important aspect of any system. Generally when the word backup is expressed in Oracle, it is coincided with an Oracle database. But an appropriate understanding depicts a different picture; Here the focus is on Oracle E-Business Suite (EBS) and Oracle Applications Server (Oracle AS). Backup Oracle E-Business Suite (EBS) – [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=4&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="text-decoration:underline;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Introduction </span></span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Backup is a very important aspect of any system. Generally when the word backup is expressed in Oracle, it is coincided with an Oracle database. But an appropriate understanding depicts a different picture; </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Here the focus is on Oracle E-Business Suite (EBS) and Oracle Applications Server (Oracle AS). </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="text-decoration:underline;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Backup Oracle E-Business Suite (EBS) – The Perspective </span></span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Cloning Oracle Applications Release 11i with Rapid Clone: Doc ID:  Note: 230672.1</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Cloning Oracle Applications Release 12 with Rapid Clone: Doc ID:  Note: 406982.1</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">These are some helpful documents while referring to backing up Oracle E-Business Suite (EBS). </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Since the intend is to understand backup, we can directly pass on to the cloning portion of the doc for Oracle Applications Release 11i that can be as follows;</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Prepare the Source </span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the database tier.</span></li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script the application tier.</span></li>
</ul>
</li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Copy the files </span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Copy the applications tier file system which includes APPL_TOP, OA_HTML, OA_JAVA, OA_JRE_TOP, COMMON_TOP/util, COMMON_TOP/clone, COMMON_TOP/pages, 806 ORACLE_HOME, iAS ORACLE_HOME).</span></li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Copy the database tier file system which includes the DBF files and the ORACLE_HOME</span></li>
</ul>
</li>
</ul>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Configure the Target </span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the database tier. </span></li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the application tier. </span></li>
</ul>
</li>
</ul>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Note: </span><span style="font-size:small;font-family:Times New Roman;">Please see Doc ID:  Note: 230672.1 for complete details.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Here referring to the same process but for Oracle Applications Release 12 </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<ul style="margin-top:0;" type="disc">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Prepare the Source </span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the database tier. </span></li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the applications tier.</span></li>
</ul>
</li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Copy the files </span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Copy the application tier file system which includes APPL_TOP, COMMON_TOP and Tech Stack (AS Tools ORACLE_HOME + AS Web IAS ORACLE_HOME)).</span></li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Copy the database tier file system which includes the DBF files and the ORACLE_HOME</span></li>
</ul>
</li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Configure the Target </span>
<ul style="margin-top:0;" type="circle">
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the database tier. </span></li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Run the cloning script on the application tier.</span></li>
</ul>
</li>
</ul>
<p class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Note: </span><span style="font-size:small;font-family:Times New Roman;">Please see Doc ID:  Note: 406982.1 for complete details.</span><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Apparently various details have not been presented; these details would include closing or shutting down the services, the perquisites check, location of the scripts, names of the scripts since process has been reviewed in a glance. The conclusive point is that cloning not only includes database file system but also application file system. Further, cloning Oracle Applications can be constituted as an Oracle Applications backup.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="text-decoration:underline;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Backup Oracle Application Server (Oracle AS) – The Perspective</span></span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Oracle Applications Server (10.1.3)</span></p>
<p class="MsoNormal" style="margin:0;"><a href="http://download.oracle.com/docs/cd/B31017_01/core.1013/b28940/br_bkp.htm#BABFJJIG"><span style="font-size:small;font-family:Times New Roman;">http://download.oracle.com/docs/cd/B31017_01/core.1013/b28940/br_bkp.htm#BABFJJIG</span></a></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Oracle Applications Server (10.2.1)</span></p>
<p class="MsoNormal" style="margin:0;"><a href="http://download-west.oracle.com/docs/cd/B14099_19/core.1012/b13995/br_bkp.htm#i1010329"><span style="font-size:small;font-family:Times New Roman;">http://download-west.oracle.com/docs/cd/B14099_19/core.1012/b13995/br_bkp.htm#i1010329</span></a></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">These are from the administrator guides.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Oracle AS backup has been suggested as follows;</span></span><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<ol>
<li>
<div class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Oracle AS Complete Installation </span></div>
</li>
<li class="MsoNormal"><span style="font-size:small;font-family:Times New Roman;">Oracle AS Server Environment </span></li>
<li class="MsoNormal"><span style="font-size:small;"><span style="font-family:Times New Roman;">Oracle AS Running </span></span></li>
<li class="MsoNormal"><span style="font-size:small;"><span style="font-family:Times New Roman;">Instance Backup </span></span></li>
</ol>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Note: </span><span style="font-size:small;font-family:Times New Roman;">Please see the Oracle documentation for complete details. </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">The first condition for an Oracle AS backup is a complete Oracle Application Server installation. The second condition is an image backup. Under the situation the Oracle AS has been running and some massive, regular or administrative changes have been made, the previous step has to be referred. Lastly the instance backup is to be considered. The conclusive point is there are two types of Oracle Application Server backups; image backup and instance backup. </span></p>
<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong> </strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="text-decoration:underline;"> </span></strong></p>
<p class="MsoNormal" style="margin:0;"><strong><span style="text-decoration:underline;"><span style="font-size:small;"><span style="font-family:Times New Roman;">Summary </span></span></span></strong></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">Therefore, in both cases (Oracle EBS and Oracle AS) Oracle provides secure methods for backups considering not only the database files but other files as well.</span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;">We tend to cover more of Oracle Application Server backups in the coming parts. </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<p class="MsoNormal" style="margin:0;"><span style="font-size:small;font-family:Times New Roman;"> </span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/saadshujaatoramentary.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/saadshujaatoramentary.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/saadshujaatoramentary.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/saadshujaatoramentary.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/saadshujaatoramentary.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/saadshujaatoramentary.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/saadshujaatoramentary.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/saadshujaatoramentary.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/saadshujaatoramentary.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/saadshujaatoramentary.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=saadshujaatoramentary.wordpress.com&amp;blog=4049814&amp;post=4&amp;subd=saadshujaatoramentary&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://saadshujaatoramentary.wordpress.com/2008/06/23/understanding-backing-%e2%80%98up%e2%80%99-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b04d22c93a70b6ef50ae72625f56ed2c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ssk5</media:title>
		</media:content>
	</item>
	</channel>
</rss>
