<?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>Apps DBA Concepts &#187; Database</title>
	<atom:link href="http://appsdbanew.wordpress.com/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://appsdbanew.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Tue, 30 Sep 2008 17:19:49 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='appsdbanew.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/8693847b23cc4fa4bf2c939f5df36bc8?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Apps DBA Concepts &#187; Database</title>
		<link>http://appsdbanew.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://appsdbanew.wordpress.com/osd.xml" title="Apps DBA Concepts" />
		<item>
		<title>Find the current SQL in the database</title>
		<link>http://appsdbanew.wordpress.com/2008/07/16/find-the-current-sql-in-the-database/</link>
		<comments>http://appsdbanew.wordpress.com/2008/07/16/find-the-current-sql-in-the-database/#comments</comments>
		<pubDate>Wed, 16 Jul 2008 11:57:08 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/?p=39</guid>
		<description><![CDATA[select username, sql_text from v$session s, v$sqlarea sql where s.sql_address = sql.address and s.sql_hash_value = sql.hash_value;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=39&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>select username, sql_text from v$session s, v$sqlarea sql where s.sql_address = sql.address and s.sql_hash_value = sql.hash_value;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=39&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2008/07/16/find-the-current-sql-in-the-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
		<item>
		<title>Enabling flashback on Oracle</title>
		<link>http://appsdbanew.wordpress.com/2008/06/06/enabling-flashback-on-oracle/</link>
		<comments>http://appsdbanew.wordpress.com/2008/06/06/enabling-flashback-on-oracle/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 15:05:25 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/?p=37</guid>
		<description><![CDATA[Flashback query is not enabled by default and must be turned on in following sequence. We will set retention to 10 hours (600 minutes), set recovery size up to 2 GB in file &#8220;/recovery/flashback&#8221;:
shutdown immediate;
startup mount;
alter database archivelog;
alter system set DB_FLASHBACK_RETENTION_TARGET=600;
alter system set DB_RECOVERY_FILE_DEST_SIZE=2G;
alter system set DB_RECOVERY_FILE_DEST=&#8217;/recovery/flashback&#8217;;
alter database flashback on;
alter database open;
    [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=37&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Flashback query is not enabled by default and must be turned on in following sequence. We will set retention to 10 hours (600 minutes), set recovery size up to 2 GB in file &#8220;/recovery/flashback&#8221;:</p>
<p>shutdown immediate;<br />
startup mount;<br />
alter database archivelog;<br />
alter system set DB_FLASHBACK_RETENTION_TARGET=600;<br />
alter system set DB_RECOVERY_FILE_DEST_SIZE=2G;<br />
alter system set DB_RECOVERY_FILE_DEST=&#8217;/recovery/flashback&#8217;;<br />
alter database flashback on;<br />
alter database open;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/37/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/37/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/37/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/37/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/37/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=37&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2008/06/06/enabling-flashback-on-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
		<item>
		<title>ARCHIVE LOG START is DEPRECATED in 11g</title>
		<link>http://appsdbanew.wordpress.com/2008/05/28/archive-log-start-is-deprecated-in-11g/</link>
		<comments>http://appsdbanew.wordpress.com/2008/05/28/archive-log-start-is-deprecated-in-11g/#comments</comments>
		<pubDate>Wed, 28 May 2008 11:33:34 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Archive]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/?p=34</guid>
		<description><![CDATA[In 11g database ,&#8221;alter system archive log start;&#8221; this statement is not working because from the alert logs archive log start is deprecated . So ALTER DATABASE ARCHIVELOG is enough to start archive process .
ARCHIVE LOG START has been deprecated &#8211; see ALTER DATABASE ARCHIVELOG
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=34&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In 11g database ,&#8221;<a href="http://www.adp-gmbh.ch/ora/sql/alter_system.html#archive_log">alter system</a> archive log start;&#8221; this statement is not working because from the alert logs archive log start is deprecated . So ALTER DATABASE ARCHIVELOG is enough to start archive process .</p>
<p>ARCHIVE LOG START has been deprecated &#8211; see ALTER DATABASE ARCHIVELOG</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/34/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/34/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/34/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/34/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/34/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=34&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2008/05/28/archive-log-start-is-deprecated-in-11g/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
		<item>
		<title>PL/SQL Native Compilation Without Needing a Third-Party C Compiler</title>
		<link>http://appsdbanew.wordpress.com/2008/05/15/plsql-native-compilation-without-needing-a-third-party-c-compiler/</link>
		<comments>http://appsdbanew.wordpress.com/2008/05/15/plsql-native-compilation-without-needing-a-third-party-c-compiler/#comments</comments>
		<pubDate>Thu, 15 May 2008 11:44:30 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/?p=29</guid>
		<description><![CDATA[PL/SQL Native Compilation Without Needing a Third-Party C Compiler
The benefit of PL/SQL native compilation is automatically available with Oracle Database 11g. No third-party software (neither a C compiler nor a DLL loader) is needed.
Little crunch on plsql_native_library_dir parameter for HP-UX Itanium platform  pointing to some existing  directory , PL/SQL native compilation utilise the directory for
compilation [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=29&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><strong>PL/SQL Native Compilation Without Needing a Third-Party C Compiler</strong></p>
<p>The benefit of PL/SQL native compilation is automatically available with Oracle Database 11g. No third-party software (neither a C compiler nor a DLL loader) is needed.</p>
<p>Little crunch on plsql_native_library_dir parameter for HP-UX Itanium platform  pointing to some existing  directory , PL/SQL native compilation utilise the directory for<br />
compilation .Note : It has point to existing directory otherwise you can see so many failure (HP-UX Itanium specific)</p>
<p>Insight</p>
<p>&#8220;6.1 Location of the Memory Mapped Files&#8221;<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
When a PL/SQL unit is compiled using PLSQL_CODE_TYPE=NATIVE in Oracle<br />
Database 11g, the resulting machine code is loaded into an operating system<br />
shared memory object before it is copied to the database catalog.<br />
Additionally, when the native code is fetched from the catalog for execution,<br />
it is first loaded into a shared memory object. On HP, these shared memory<br />
objects are memory mapped files, which are staged in a directory<br />
automatically created by Oracle under the dbs subdirectory of the directory<br />
specified by the environment variable ORACLE_HOME. If you need to change the<br />
location of the staging directory, contact Oracle support.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/29/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/29/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=29&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2008/05/15/plsql-native-compilation-without-needing-a-third-party-c-compiler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
		<item>
		<title>How to find blocking session and kill the session from database</title>
		<link>http://appsdbanew.wordpress.com/2007/11/05/how-to-find-blocking-session-and-kill-the-session-from-database/</link>
		<comments>http://appsdbanew.wordpress.com/2007/11/05/how-to-find-blocking-session-and-kill-the-session-from-database/#comments</comments>
		<pubDate>Mon, 05 Nov 2007 17:18:19 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/2007/11/05/how-to-find-blocking-session-and-kill-the-session-from-database/</guid>
		<description><![CDATA[During adpatch ,deadlock will happen when some jobs depends on resource where another job its holding the resource.Using adctrl ,you can find two jobs in running state there will be no log updates.
* To find blocking session jobs below query will useful. It will return two rows.
 select process,sid, blocking_session  from v$session where blocking_session [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=17&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>During adpatch ,deadlock will happen when some jobs depends on resource where another job its holding the resource.Using adctrl ,you can find two jobs in running state there will be no log updates.</p>
<p>* To find blocking session jobs below query will useful. It will return two rows.<br />
<font color="#ff0000"><em> select process,sid, blocking_session  from v$session where blocking_session is not null;</em></font><br />
E.g.<br />
SQL&gt; select process,sid, blocking_session  from v$session where blocking_session is not null;<br />
PROCESS             SID BLOCKING_SESSION<br />
&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;- &#8212;&#8212;&#8212;&#8212;&#8212;-<br />
1234                365              366<br />
1234                366              365</p>
<p>* Second step to find the serial number for the Blocking Session to kill<br />
<font color="#ff0000"><em> select SERIAL# from v$session where SID=&lt;SID number&gt;</em></font><br />
E.g.<br />
SQL&gt; select SERIAL# from v$session where SID=365;<br />
SERIAL#<br />
&#8212;&#8212;&#8212;-<br />
130</p>
<p>* Final step to kill the blocking session<br />
<font color="#ff0000"><em> alter system kill session &#8216;SID,SERIAL#&#8217;;</em></font><br />
E.g.<br />
SQL&gt;  alter system kill session &#8216;365,130&#8242;;<br />
System altered.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=17&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2007/11/05/how-to-find-blocking-session-and-kill-the-session-from-database/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
		<item>
		<title>Database Upgrade from 10.2.0.2 to 10.2.0.3 &#8211; R12</title>
		<link>http://appsdbanew.wordpress.com/2007/10/26/database-upgrade-from-10202-to-10203-r12/</link>
		<comments>http://appsdbanew.wordpress.com/2007/10/26/database-upgrade-from-10202-to-10203-r12/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 10:38:00 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/2007/10/26/database-upgrade-from-10202-to-10203-r12/</guid>
		<description><![CDATA[Oracle Apps certified the 10.2.0.3 database with R12.Metalink Note 454750.1
Here I will explain my upgrade experience.
As a normal practice before doing upgrade please backup your system. Download the required patches.




Operating   system


Unix   Users 


Windows   users




Patch   set


5337014


5337014




Patch


6319846


6344567




1.      Before Upgrade , check the invalid count [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=15&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p class="MsoNormal" style="margin-bottom:12pt;">Oracle Apps certified the 10.2.0.3 database with R12.Metalink Note <a href="http://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&amp;id=454750.1">454750.1</a></p>
<p>Here I will explain my upgrade experience.<span style="font-family:&quot;"></span></p>
<p class="MsoNormal" style="margin-left:0.25in;">As a normal practice before doing upgrade please backup your system. Download the required patches.</p>
<table style="border:medium none;border-collapse:collapse;" border="1" cellpadding="0" cellspacing="0">
<tbody>
<tr style="height:12.35pt;">
<td style="border:0.5pt solid windowtext;width:130.8pt;height:12.35pt;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">Operating   system</p>
</td>
<td style="width:130.8pt;height:12.35pt;border-color:windowtext windowtext windowtext 0;border-style:solid solid solid none;border-width:0.5pt 0.5pt 0.5pt medium;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">Unix   Users </p>
</td>
<td style="width:130.8pt;height:12.35pt;border-color:windowtext windowtext windowtext 0;border-style:solid solid solid none;border-width:0.5pt 0.5pt 0.5pt medium;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">Windows   users</p>
</td>
</tr>
<tr style="height:12.85pt;">
<td style="width:130.8pt;height:12.85pt;border-color:0 windowtext windowtext;border-style:none solid solid;border-width:medium 0.5pt 0.5pt;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">Patch   set</p>
</td>
<td style="width:130.8pt;height:12.85pt;border-color:0 windowtext windowtext 0;border-style:none solid solid none;border-width:medium 0.5pt 0.5pt medium;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">5337014</p>
</td>
<td style="width:130.8pt;height:12.85pt;border-color:0 windowtext windowtext 0;border-style:none solid solid none;border-width:medium 0.5pt 0.5pt medium;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">5337014</p>
</td>
</tr>
<tr style="height:12.35pt;">
<td style="width:130.8pt;height:12.35pt;border-color:0 windowtext windowtext;border-style:none solid solid;border-width:medium 0.5pt 0.5pt;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">Patch</p>
</td>
<td style="width:130.8pt;height:12.35pt;border-color:0 windowtext windowtext 0;border-style:none solid solid none;border-width:medium 0.5pt 0.5pt medium;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">6319846</p>
</td>
<td style="width:130.8pt;height:12.35pt;border-color:0 windowtext windowtext 0;border-style:none solid solid none;border-width:medium 0.5pt 0.5pt medium;padding:0 5.4pt;" valign="top" width="174">
<p class="MsoNormal">6344567</p>
</td>
</tr>
</tbody>
</table>
<p class="MsoNormal" style="margin-left:0.75in;text-indent:-0.25in;"><!--[if !supportLists]-->1.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">      </span><!--[endif]-->Before Upgrade , check the invalid count in the database</p>
<p class="MsoNormal" style="margin-left:0.75in;text-indent:-0.25in;"><!--[if !supportLists]-->2.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">      </span><!--[endif]-->Unzip the patch 5337014 .</p>
<p class="MsoNormal" style="margin-left:0.75in;text-indent:-0.25in;"><!--[if !supportLists]-->3.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">      </span><!--[endif]-->Invoke the run installer for unix and setup.exe for windows users.</p>
<p class="MsoNormal" style="margin-left:0.75in;text-indent:-0.25in;"><!--[if !supportLists]-->4.<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">      </span><!--[endif]-->As a part of post install step</p>
<p class="MsoNormal" style="margin-left:1in;text-indent:-0.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;">·<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">        </span></span><!--[endif]-->Start the database in upgrade mode</p>
<p class="MsoNormal" style="margin-left:1in;text-indent:-0.25in;"><!--[if !supportLists]--><strong><span style="font-family:Symbol;font-weight:normal;">·<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">        </span></span></strong><!--[endif]--><strong>@?/rdbms/admin/catupgrd.sql</strong><strong><span style="font-weight:normal;"></span></strong></p>
<p class="MsoNormal" style="margin-left:1in;text-indent:-0.25in;"><!--[if !supportLists]--><strong><span style="font-family:Symbol;font-weight:normal;">·<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">        </span></span></strong><!--[endif]--><strong><span style="font-weight:normal;">After completed upgrade ,Shutdown the database and startup in normal mode.</span></strong></p>
<p class="MsoNormal" style="margin-left:1in;text-indent:-0.25in;"><!--[if !supportLists]--><strong><span style="font-family:Symbol;font-weight:normal;">·<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">        </span></span></strong><!--[endif]--><strong>@?/rdbms/admin/utlrp.sql</strong><strong><span style="font-weight:normal;"></span></strong></p>
<p class="MsoNormal" style="margin-left:1in;text-indent:-0.25in;"><!--[if !supportLists]--><span style="font-family:Symbol;">·<span style="font-family:&quot;font-style:normal;font-variant:normal;font-weight:normal;font-size:7pt;line-height:normal;">        </span></span><!--[endif]--><strong><span style="font-weight:normal;">Apply the additional patches(6319846 and 6344567)</span></strong><b></b></p>
<p class="MsoNormal" style="margin-left:0.25in;"><!--[if !supportEmptyParas]--> <!--[endif]--></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> <!--[endif]--></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=15&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2007/10/26/database-upgrade-from-10202-to-10203-r12/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
		<item>
		<title>CPU patch and Opatch</title>
		<link>http://appsdbanew.wordpress.com/2007/08/28/cpu-patch-and-opatch/</link>
		<comments>http://appsdbanew.wordpress.com/2007/08/28/cpu-patch-and-opatch/#comments</comments>
		<pubDate>Tue, 28 Aug 2007 09:12:00 +0000</pubDate>
		<dc:creator>vasselva</dc:creator>
				<category><![CDATA[Database]]></category>

		<guid isPermaLink="false">http://appsdbanew.wordpress.com/2007/08/28/cpu-patch-and-opatch/</guid>
		<description><![CDATA[Today I am going to give little insight about Opatch and CPU patch.Opatch is a tool is used to patch all oracle homes for oracle applications. CPU is stands for Critical patch updates, in other way its a security patches for Apps. Is Apps DBA responsibility to keep CPU patches up-to-date to avoid security vulnerabilities.
In [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=12&subd=appsdbanew&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><span style="text-decoration:none;"></span>Today I am going to give little insight about Opatch and CPU patch.Opatch is a tool is used to patch all oracle homes for oracle applications. CPU is stands for Critical patch updates, in other way its a security patches for Apps. Is Apps DBA responsibility to keep CPU patches up-to-date to avoid security vulnerabilities.
<p class="MsoNormal">In Apps we need to use Opatch and adpatch for patching oracle apps. Why we need to use two utility to patch oracle apps.opatch is used to patch all oracle homes (for R12..10.1.2,10.1.3 and 10.2.0.2 oracle homes). Apps patches we need to use to adpatch.</p>
<p class="MsoNormal">How to use Opatch?</p>
<p class="MsoNormal">Opatch is one of the easiest and safest for patching oracle apps because you can rollback opatch if you find any issues applying the patches   </p>
<ol>
<li class="MsoNormal">From the      opatch read me make sure which oracle home you want to patch </li>
<li class="MsoNormal">Shutdown      the instance related to particular oracle home.</li>
<li class="MsoNormal">Set      the oracle home in the env .Set the opatch in the path.</li>
<li class="MsoNormal">Follow      the readme whether opatch needs up gradation.</li>
<li class="MsoNormal">cd to      the patch area and opatch apply</li>
<li class="MsoNormal">Proceed      the post install steps </li>
<li class="MsoNormal">Run      cpu_root.sh to give some permissions to the executables.</li>
<li class="MsoNormal">For      rollback use opath rollback –id </li>
<li class="MsoNormal">“opatch      lsinventory “ is used to list all the patches</li>
<li class="MsoNormal">“opatch      lsinventory –details” is used to find the version belongs to particular      oracle home.</li>
</ol>
<p class="MsoNormal" style="margin-left:0.25in;"><!--[if !supportEmptyParas]--> <!--[endif]--></p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> CPU patch<span style="text-decoration:none;"></span></p>
<p class="MsoNormal">CPU patch has to keep uptodate. Use opatch to apply CPU patches. Follow the opatch steps to apply the CPU patch. As part of post installation step run catcpu.sql and utlrp.sql</p>
<p class="MsoNormal"><!--[if !supportEmptyParas]--> Issues will face<span style="text-decoration:none;"></span></p>
<ol>
<li class="MsoNormal">When      you are applying CPU patch you will get conflict<span>  </span>with some patches .Report to Oracle Corporation they will      provide a new merged patch if its actually a conflict.</li>
</ol>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/appsdbanew.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/appsdbanew.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/appsdbanew.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/appsdbanew.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/appsdbanew.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/appsdbanew.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/appsdbanew.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/appsdbanew.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/appsdbanew.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/appsdbanew.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/appsdbanew.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/appsdbanew.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=appsdbanew.wordpress.com&blog=1994216&post=12&subd=appsdbanew&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://appsdbanew.wordpress.com/2007/08/28/cpu-patch-and-opatch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3b773ca4af593b14609792d09a1fbcb3?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">vasselva</media:title>
		</media:content>
	</item>
	</channel>
</rss>