<?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>Helios&#039;s Blog</title>
	<atom:link href="http://heliosguneserol.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://heliosguneserol.wordpress.com</link>
	<description></description>
	<lastBuildDate>Sun, 15 Jan 2012 09:41:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='heliosguneserol.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Helios&#039;s Blog</title>
		<link>http://heliosguneserol.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://heliosguneserol.wordpress.com/osd.xml" title="Helios&#039;s Blog" />
	<atom:link rel='hub' href='http://heliosguneserol.wordpress.com/?pushpress=hub'/>
		<item>
		<title>11g Snapshot Standby for real time testing</title>
		<link>http://heliosguneserol.wordpress.com/2011/12/08/11g-snapshot-standby-for-real-time-testing/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/12/08/11g-snapshot-standby-for-real-time-testing/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 15:03:16 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[Hot news - Oracle E-Business Suite]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[Snapshot]]></category>
		<category><![CDATA[Snapshot Standby]]></category>
		<category><![CDATA[Standby]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=813</guid>
		<description><![CDATA[Sometimes We need to make some test on our database and then We want to revert what We have done on database. I want to make demo for 11g Snapshot Standby for real time testing. Now let us talk about what I meant deeply Oracle 11g have one one very good feature which is calling [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=813&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes We need to make some test on our database and then We want to revert what We have done on database.</p>
<p>I want to make demo for 11g Snapshot Standby for real time testing. Now let us talk about what I meant deeply<span id="more-813"></span><br />
Oracle 11g have one one very good feature which is calling Snapshot Standby database where we can basically convert the physical standby database into a read-write real time production database which we can use that database temporarily for our possible development testing and disaster scenario</p>
<p>Basically, Snapshot Standby database uses the Flashback Database technology to create a guaranteed restore point to which the database can be later flashed back to. So this future give us possibility on work on that database.</p>
<p>Now let use see how we can use this future, here is the my scenario:</p>
<p>I have 11gR2(11.2.0.1) database on AIX 6.1 server which is working as primary database at İstanbul.This database also have physical standby database which run on our disaster center at İzmir(PS: İstabul and İzmir are cities in  Turkey(The distance is almost 600 Km.)</p>
<p>What is our purpose? We want to make some test on standby database,thatswhy we want to open that database,working on it than we want to turn normal state as working as before.</p>
<p>Here is the our steps:</p>
<p>1. Check db_recovery parameter on both database(standby&amp;primary)</p>
<p>On primary</p>
<p>SQL&gt; show parameters db_recovery;</p>
<p>NAME                                 TYPE        VALUE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
db_recovery_file_dest                     string<br />
db_recovery_file_dest_size           big integer 0</p>
<p>SQL&gt; alter system set db_recovery_file_dest_size=50g scope=both;</p>
<p>Database altered.</p>
<p>SQL&gt; Alter system set db_recovery_file_dest=&#8217;+ORAFRA&#8217; scope=both;</p>
<p>Database altered.</p>
<p>SQL&gt; alter database flashback on;</p>
<p>Database altered.</p>
<p>On Standby</p>
<p>SQL&gt; show parameters db_recovery;</p>
<p>NAME                                 TYPE        VALUE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
db_recovery_file_dest                     string<br />
db_recovery_file_dest_size           big integer 0</p>
<p>SQL&gt; alter system set db_recovery_file_dest_size=50g scope=both;</p>
<p>Database altered.</p>
<p>SQL&gt; Alter system set db_recovery_file_dest=&#8217;+ORAFRA&#8217; scope=both;</p>
<p>Database altered.</p>
<p>SQL&gt; select protection_mode, protection_level from v$database;</p>
<p>PROTECTION_MODE      PROTECTION_LEVEL<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
MAXIMUM AVAILABILITY MAXIMUM AVAILABILITY</p>
<p>SQL&gt; alter database flashback on;</p>
<p>Database altered.</p>
<p>SQL&gt; alter database recover managed standby database cancel;</p>
<p>Database altered.</p>
<p>SQL&gt; select flashback_on from v$database;</p>
<p>FLASHBACK_ON<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
YES</p>
<p>On Primary</p>
<p>Now for to can be sure before after state We are creating table on primary.</p>
<p>SQL&gt; create table test_table_on_primary (status varchar2(20),date timestamp);</p>
<p>Table created.</p>
<p>SQL&gt; insert into test_table_on_primary values(&#8216;before snapshot&#8217;,sysdate);</p>
<p>1 row created.</p>
<p>SQL&gt; commit;</p>
<p>Commit complete.</p>
<p>SQL&gt; set linesize 1000<br />
SQL&gt; select * from test_table_on_primary</p>
<p>STATUS               TARIH<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#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;<br />
before snapshot      23-NOV-11 01.54.48.000000 PM</p>
<p>Now we can keep working on standby database</p>
<p>On Standby</p>
<p>SQL&gt; ALTER DATABASE CONVERT TO SNAPSHOT STANDBY;</p>
<p>Database altered.</p>
<p>SQL&gt; shutdown immediate;<br />
ORA-01109: database not open</p>
<p>Database dismounted.<br />
ORACLE instance shut down.</p>
<p>SQL&gt; startup;<br />
ORACLE instance started.</p>
<p>Total System Global Area 3206836224 bytes<br />
Fixed Size                  2211064 bytes<br />
Variable Size            2717909768 bytes<br />
Database Buffers          469762048 bytes<br />
Redo Buffers               16953344 bytes<br />
Database mounted.<br />
Database opened.</p>
<p>SQL&gt; set linesize 1000<br />
SQL&gt; select NAME,GUARANTEE_FLASHBACK_DATABASE from  v$restore_point;</p>
<p>NAME                                                                                                                             GUA<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;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;<br />
SNAPSHOT_STANDBY_REQUIRED_11/23/2011 13:35:41                                                                                    YES</p>
<p>SQL&gt; select open_mode,database_role from v$database;</p>
<p>OPEN_MODE            DATABASE_ROLE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;-<br />
READ WRITE           SNAPSHOT STANDBY</p>
<p>Now we are adding one new record on table which we created on primary. We are doing this to can show primary keeping redolog until our standby db will have againg physical standby database_role. When we will finish our process on snapshot database and convert it to physical standby,primary start again to send redo to standby database for apply.</p>
<p>On Primary</p>
<p>SQL&gt; insert into test_table_on_primary values(&#8216;standbyworkingas_snapshot&#8217;,sysdate);</p>
<p>1 row created.</p>
<p>SQL&gt; commit;</p>
<p>Commit complete.</p>
<p>SQL&gt; select * from test_table_on_primary;</p>
<p>STATUS               TARIH<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#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;<br />
before snapshot                      23-NOV-11 01.54.48.000000 PM<br />
standbyworkingas_snapshot           23-NOV-11 01.59.47.000000 PM</p>
<p>So as you can see we have 2 records on table.</p>
<p>On standby</p>
<p>select * from test_table_on_primary</p>
<p>STATUS               TARIH<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#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;<br />
before snapshot      23-NOV-11 01.54.48.000000 PM</p>
<p>As you can see it brings only one record.</p>
<p>So now we can start to make our test on standby database</p>
<p>On standby</p>
<p>SQL&gt; create table test_table_on_standby(status varchar2(20));</p>
<p>Table created.</p>
<p>SQL&gt; insert into test_table_on_standby values(&#8216;workingin_snapshot_role&#8217;);</p>
<p>1 row created.</p>
<p>SQL&gt; commit;</p>
<p>SQL&gt; select open_mode,database_role from v$database;</p>
<p>OPEN_MODE            DATABASE_ROLE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;-<br />
READ WRITE           SNAPSHOT STANDBY</p>
<p>SQL&gt; shutdown immediate<br />
Database closed.<br />
Database dismounted.<br />
ORACLE instance shut down.</p>
<p>SQL&gt; startup mount<br />
ORACLE instance started.</p>
<p>Total System Global Area 3206836224 bytes<br />
Fixed Size                  2211064 bytes<br />
Variable Size            2717909768 bytes<br />
Database Buffers          469762048 bytes<br />
Redo Buffers               16953344 bytes<br />
Database mounted.</p>
<p>Now we turn back our database role from SNAPSHOT STANDBY to PHYSICAL STANDBY</p>
<p>SQL&gt; ALTER DATABASE CONVERT TO PHYSICAL STANDBY;</p>
<p>Database altered.</p>
<p>SQL&gt; shutdown immediate<br />
ORA-01507: database not mounted</p>
<p>ORACLE instance shut down.</p>
<p>SQL&gt; startup mount<br />
ORACLE instance started.</p>
<p>Total System Global Area 3206836224 bytes<br />
Fixed Size                  2211064 bytes<br />
Variable Size            2717909768 bytes<br />
Database Buffers          469762048 bytes<br />
Redo Buffers               16953344 bytes<br />
Database mounted.</p>
<p>SQL&gt; select open_mode,database_role from v$database;</p>
<p>OPEN_MODE            DATABASE_ROLE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;-<br />
MOUNTED              PHYSICAL STANDBY</p>
<p>SQL&gt; alter database recover managed standby database disconnect from session;</p>
<p>Database altered.</p>
<p>Now our standby database up and running&#8230; What we are expecting here? Redolog has been started to apply on standby database and our table should bring us to correct data</p>
<p>On standby</p>
<p>SQL&gt; alter database open read only;</p>
<p>Database altered.</p>
<p>SQL&gt; select * from test_table_on_primary;</p>
<p>STATUS               TARIH<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#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;<br />
before snapshot      23-NOV-11 01.54.48.000000 PM<br />
snapshotta           23-NOV-11 01.59.47.000000 PM</p>
<p>On standby we created test_table_on_standby&#8230;What we are expecting here? The table should not be exist after we stopped our process</p>
<p>SQL&gt; select * from test_table_on_standby;<br />
select * from test_table_on_standby<br />
*<br />
ERROR at line 1:<br />
ORA-00942: table or view does not exist</p>
<p>Now we restart standby database wiht mount mode</p>
<p>SQL&gt;alter database recover managed standby database cancel;<br />
Database altered.</p>
<p>SQL&gt; shutdown immediate;<br />
Database closed.<br />
Database dismounted.<br />
ORACLE instance shut down.<br />
SQL&gt; startup mount<br />
ORACLE instance started.</p>
<p>QL&gt; startup mount<br />
ORACLE instance started.</p>
<p>Total System Global Area 3206836224 bytes<br />
Fixed Size                  2211064 bytes<br />
Variable Size            2717909768 bytes<br />
Database Buffers          469762048 bytes<br />
Redo Buffers               16953344 bytes<br />
Database mounted.</p>
<p>SQL&gt; alter database recover managed standby database disconnect from session;</p>
<p>Database altered.</p>
<p>As you can see we can make our test wihtout any problem wiht new future of  Oracle11g</p>
<p><strong>Reference:</strong><br />
<strong> 11g Using Snapshot Standby Database. [ID 443720.1]</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/813/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/813/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/813/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/813/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/813/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/813/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/813/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/813/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=813&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/12/08/11g-snapshot-standby-for-real-time-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>How to Generate A Schema Script to Compare with Another Schema</title>
		<link>http://heliosguneserol.wordpress.com/2011/12/08/how-to-generate-a-schema-script-to-compare-with-another-schema/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/12/08/how-to-generate-a-schema-script-to-compare-with-another-schema/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 14:56:26 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[FAQ - E-Business Suite General]]></category>
		<category><![CDATA[How to Generate A Schema Script to Compare with Another Schema]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=809</guid>
		<description><![CDATA[Sometimes We need to compare Schema which is on Test database wiht Production Schema. I am going to share one document which is using TOAD program for this purpose. I hope you enjoy it. How to Generate A Schema Script to Compare with Another Schema<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=809&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes We need to compare Schema which is on Test database wiht Production Schema. I am going to share one document which is using TOAD program for this purpose.</p>
<p>I hope you enjoy it.</p>
<p><a href="http://heliosguneserol.files.wordpress.com/2011/12/how-to-generate-a-schema-script-to-compare-with-another-schema.doc">How to Generate A Schema Script to Compare with Another Schema</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/809/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/809/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/809/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/809/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/809/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/809/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/809/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/809/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=809&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/12/08/how-to-generate-a-schema-script-to-compare-with-another-schema/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>Some new certification</title>
		<link>http://heliosguneserol.wordpress.com/2011/11/23/some-new-certification/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/11/23/some-new-certification/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 08:32:02 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[Hot news - Oracle E-Business Suite]]></category>
		<category><![CDATA[11.2.0.3 certification+ebs]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=805</guid>
		<description><![CDATA[Steven Chan has announcement about new certifications with  Oracle E-Business Suite First one Solaris 11 certified with E-Business Suite R12.1. You need to be on R12.1.1 or higher version for can run on this platform  and also need to have the latest Rapid Install startCD version 12.1.1.13. For details please click here Steven Chan has [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=805&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Steven Chan has announcement about new certifications with  Oracle E-Business Suite</p>
<p>First one Solaris 11 certified with E-Business Suite R12.1. You need to be on R12.1.1 or higher version for can run on this platform  and also need to have the latest <a href="http://blogs.oracle.com/stevenChan/entry/new_rapid_install_startcd_12">Rapid Install startCD version 12.1.1.13</a>.</p>
<p>For details <a title="solaris11" href="http://blogs.oracle.com/stevenChan/entry/oracle_e_business_suite_release1" target="_blank">please click here</a></p>
<p>Steven Chan has announcement about 11.2.0.3 certification with E-Business Suite R11&amp;R12.  We are also  waiting certification also for AIX platform for can start our upgrade process for our existing R12.1.3 system.</p>
<p>For details <a title="11.2.0.3" href="http://blogs.oracle.com/stevenChan/entry/11gr2_11_2_0_3" target="_blank">please click here</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/805/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/805/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/805/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=805&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/11/23/some-new-certification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle E-Business Suite Technology Webcasts and Training</title>
		<link>http://heliosguneserol.wordpress.com/2011/11/23/oracle-e-business-suite-technology-webcasts-and-training/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/11/23/oracle-e-business-suite-technology-webcasts-and-training/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 08:17:09 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[Hot news - Oracle E-Business Suite]]></category>
		<category><![CDATA[EBS+webcast]]></category>
		<category><![CDATA[training]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=803</guid>
		<description><![CDATA[Previously Steven Chan has been announce the online traning about EBS Webcasts and Training. For ppl who missed that event Steven Chan made post on his blog. For details, presentation please click here<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=803&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Previously Steven Chan has been announce the online traning about EBS Webcasts and Training. For ppl who missed that event Steven Chan made post on his blog.</p>
<p>For details, presentation <a title="Webcast" href="http://blogs.oracle.com/stevenChan/entry/e_business_suite_technology_learning" target="_blank">please click here </a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/803/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/803/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/803/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/803/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/803/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/803/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/803/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/803/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=803&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/11/23/oracle-e-business-suite-technology-webcasts-and-training/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>OOW- E-Business Related Session&#8217;s Presentations</title>
		<link>http://heliosguneserol.wordpress.com/2011/10/28/oow-e-business-related-sessions-presentations/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/10/28/oow-e-business-related-sessions-presentations/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 08:40:01 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[FAQ - E-Business Suite General]]></category>
		<category><![CDATA[OOW+presentations]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=799</guid>
		<description><![CDATA[As you know at OOW,  There were 25 sessions avaliable for E-Business Suite which were mention by Steven Chan&#8217;s blog previously&#8230; Three Hands-On Labs, two Meet the Experts round-table discussions, and five demoground booths planned just for E-Business Suite Applications Technology Group content.Click here for details. Steven Chan made post for users who want to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=799&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you know at OOW,  There were 25 sessions avaliable for E-Business Suite which were mention by Steven Chan&#8217;s blog previously&#8230;</p>
<p>Three Hands-On Labs, two Meet the Experts round-table discussions, and five demoground booths planned just for E-Business Suite Applications Technology Group content.Click <a title="OOW Sessions" href="http://blogs.oracle.com/stevenChan/entry/e_business_suite_technology_related" target="_blank">here </a>for details.</p>
<p>Steven Chan made post for users who want to download those presentations.</p>
<p>Here is the links:  <a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/openworld_2011_presentations_available_for">OpenWorld 2011 Presentations Available for Download</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/799/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/799/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/799/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/799/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/799/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/799/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/799/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/799/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=799&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/10/28/oow-e-business-related-sessions-presentations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>Some of Hot news from Steven Chan</title>
		<link>http://heliosguneserol.wordpress.com/2011/10/28/some-of-hot-news-from-steven-chan/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/10/28/some-of-hot-news-from-steven-chan/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 08:29:28 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[Hot news - Oracle E-Business Suite]]></category>
		<category><![CDATA[Steven chan+news+DST+patch]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=792</guid>
		<description><![CDATA[Someof  good news about publish on Steven Chan blog. Here is the details to can get lastest certifications and also lastest news which is related wiht E-Business Suite. Quarterly E-Business Suite Upgrade Recommendations: October 2011 Edition EBS 12.1 Extended Support Fees Waived for First Year Oracle Internet Directory 11gR1 11.1.1.5 Certified with E-Business Suite Latest [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=792&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Someof  good news about publish on Steven Chan blog. Here is the details to can get lastest certifications and also lastest news which is related wiht E-Business Suite.</p>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/key_e_business_suite_technology">Quarterly E-Business Suite Upgrade Recommendations: October 2011 Edition</a></h4>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/ebs_12_1_extended_support">EBS 12.1 Extended Support Fees Waived for First Year</a></h4>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/oracle_internet_directory_11_11">Oracle Internet Directory 11gR1 11.1.1.5 Certified with E-Business Suite </a></h4>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/latest_dstv17_timezone_patches_available1">Latest DSTv17 Timezone Patches Available for E-Business Suite R11i</a></h4>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/latest_dstv17_timezone_patches_available">Latest DSTv17 Timezone Patches Available for E-Business Suite R12</a></h4>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/oracle_access_manager_11_11">Sun JRE 1.6.0_29 Certified with Oracle E-Business Suite</a></h4>
<h4><a title="permalink" href="http://blogs.oracle.com/stevenChan/entry/oracle_access_manager_11_11">Oracle Access Manager 11.1.1.5 Certified with E-Business Suite 12</a></h4>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/792/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/792/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/792/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=792&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/10/28/some-of-hot-news-from-steven-chan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>Enterprise Manager Cloud Control-12c</title>
		<link>http://heliosguneserol.wordpress.com/2011/10/14/enterprise-manager-cloud-control-12c/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/10/14/enterprise-manager-cloud-control-12c/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 14:45:14 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[Hot news - Oracle E-Business Suite]]></category>
		<category><![CDATA[12c]]></category>
		<category><![CDATA[Grid]]></category>
		<category><![CDATA[installation]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=786</guid>
		<description><![CDATA[As you heard/known Oracle Enterprise Manager family has new member Oracle Enterprise Manager 12c Previous release we call it &#8220;Grid Control&#8221; but after this release we have new naming &#8220;Cloud Control&#8221;. Here is the some links which could be helpful to get details about this new product: 1. All docs are available here: http://download.oracle.com/docs/cd/E24628_01/index.htm 2. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=786&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you heard/known Oracle Enterprise Manager family has new member <strong>Oracle Enterprise Manager 12c</strong></p>
<p>Previous release we call it <strong>&#8220;Grid Control&#8221;</strong> but after this release we have new naming<strong> &#8220;Cloud Control&#8221;</strong>.</p>
<p>Here is the some links which could be helpful to get details about this new product:</p>
<p>1. All docs are available here:<strong> </strong></p>
<p><strong>http://download.oracle.com/docs/cd/E24628_01/index.htm</strong></p>
<p>2. You can download this product from here:</p>
<p><strong>http://www.oracle.com/technetwork/oem/grid-control/downloads/index.html</strong></p>
<p>3. For pricing details :</p>
<p><strong>http://www.oracle.com/us/corporate/pricing/index.html</strong></p>
<p>4. For video&amp;demo and more check here:</p>
<p><strong>http://www.oracle.com/us/products/enterprise-manager/index.html</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/786/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/786/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/786/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=786&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/10/14/enterprise-manager-cloud-control-12c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>How to move ASM database files from one location to another by CP command</title>
		<link>http://heliosguneserol.wordpress.com/2011/09/20/how-to-move-asm-database-files-from-one-location-to-another-by-cp-command/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/09/20/how-to-move-asm-database-files-from-one-location-to-another-by-cp-command/#comments</comments>
		<pubDate>Tue, 20 Sep 2011 06:41:31 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[FAQ - E-Business Suite General]]></category>
		<category><![CDATA[ASM]]></category>
		<category><![CDATA[CP command]]></category>
		<category><![CDATA[Move datafile+asm]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=772</guid>
		<description><![CDATA[Sometimes we need to move one or more datafile from our tablespace to one location to another because of disk space issue. In this article i try to explain how we can achive this process wiht CP command of asmcmd utulity  via demo If you want to do this process wiht RMAN utulity please check [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=772&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes we need to move one or more datafile from our tablespace to one location to another because of disk space issue.<br />
<span id="more-772"></span><br />
In this article i try to explain how we can achive this process wiht <strong>CP</strong> command of a<strong>smcmd utulity</strong>  via demo</p>
<p>If you want to do this process wiht <strong>RMAN</strong> utulity please check my other post by <a title="Move datafile via cp command" href="http://heliosguneserol.wordpress.com/2011/04/10/how-to-move-asm-database-files-from-one-diskgroup-to-another/" target="_blank">click here</a></p>
<p>How to move ASM database files from one location to another by CP command</p>
<p>Sometimes we need to move one or more datafile from our tablespace to one location to another because of disk space issue.</p>
<p>In this article i try to explain how we can achive this process wiht CP command of asmcmd utulity  via demo</p>
<p><strong>The database version is :</strong></p>
<p>11.2.0.1</p>
<p><strong>The Operating System is:</strong></p>
<p>AIX 6.1</p>
<p>Let  us check first the existing  status</p>
<pre>[oracle@TEST] export ORACLE_SID=+ASM
[oracle@TEST]echo $ORACLE_SID
+ASM
[oracle@TEST]sqlplus “/as sysasm”
SQL*Plus: Release 11.2.0.1.0 Production on Fri Apr 8 15:21:14 2011
Copyright (c) 1982, 2009, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 – 64bit Production
With the Automatic Storage Management option</pre>
<p>Let us see first our diskgroup :</p>
<pre>SQL&gt; select group_number, name, total_mb, free_mb, state, type from v$asm_diskgroup;</pre>
<table width="537" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="bottom" width="122">
<pre><strong>Group_Number</strong></pre>
</td>
<td valign="bottom" width="87">
<pre><strong>Name</strong></pre>
</td>
<td valign="bottom" width="80">
<pre><strong>Total_MB</strong></pre>
</td>
<td valign="bottom" width="75">
<pre><strong>Free_MB</strong></pre>
</td>
<td valign="bottom" width="98">
<pre><strong>State</strong></pre>
</td>
<td valign="bottom" width="75">
<pre><strong>Type</strong></pre>
</td>
</tr>
<tr>
<td valign="bottom" width="122">
<pre>1</pre>
</td>
<td valign="bottom" width="87">
<pre>ORADATA</pre>
</td>
<td valign="bottom" width="80">
<pre>204800</pre>
</td>
<td valign="bottom" width="75">
<pre>128</pre>
</td>
<td valign="bottom" width="98">
<pre>CONNECTED</pre>
</td>
</tr>
</tbody>
</table>
<p>Before start, let us see status of  our databases:</p>
<pre>[oracle@TEST]export ORACLE_SID=TEST
[oracle@TEST]sqlplus “/as sysdba”
SQL&gt; select log_mode from v$database;
LOG_MODE
 ————
 ARCHIVELOG</pre>
<p>Now we need to  identify which datafile or datafiles we will move. Here is the steps:</p>
<pre>SQL&gt; SELECT FILE_NAME FROM DBA_DATA_FILES where tablespace_name=’GUNESTABLESPACE’;
FILE_NAME
 ——————————————————————————–
 +ORADATA/TEST/datafile/gunestablespace.270.747153997
 +ORADATA/TEST/datafile/gunestablespace.271.747154095
 +ORADATA/TEST/datafile/gunestablespace.272.747154201
 +ORADATA/TEST/datafile/gunestablespace.273.747239703
 +ORADATA/TEST/datafile/gunestablespace.274.747934181
 +ORADATA/TEST/datafile/gunestablespace.275.747934253</pre>
<p>Now we are going to follow below command to can copy one of datafile from one location to another by usingf CP command:</p>
<p>1. alter database datafile &#8216;+ORADATA/TEST/dafafile/gunestablespace.270.747153997&#8242; offline;</p>
<p>2. create or replace directory orcl1 as &#8216;+ORADATA&#8217;;</p>
<p>create or replace directory orcl2 as &#8216;+ORADATA/Move_here/datafile&#8217;;</p>
<p>3. We should use DBMS_FILE_TRANSFER package</p>
<p>BEGIN</p>
<p>DBMS_FILE_TRANSFER.COPY_FILE(</p>
<p>source_directory_object =&gt; &#8216;ORCL1&#8242;,</p>
<p>source_file_name =&gt; &#8216;gunestablespace.270.747153997&#8242;,</p>
<p>destination_directory_object =&gt; &#8216;ORCL2&#8242;,</p>
<p>destination_file_name =&gt; &#8216;gunestablespace.270.747153997&#8242;);</p>
<p>END;</p>
<p>4. Rename file</p>
<p>ALTER DATABASE RENAME FILE  &#8216;+ORADATA/gunestablespace.270.747153997&#8242;   TO  &#8216;+ORADATA/Move_here/datafile/gunestablespace.270.747153997&#8221;;</p>
<p>5.  alter database datafile &#8216;+ORADATA/pakb40/datafile/gunestablespace.270.747153997&#8242;  online;</p>
<p><strong>Reference:</strong></p>
<p><strong>How to move ASM database files from one diskgroup to another ? [ID 330103.1]</strong></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/772/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/772/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/772/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/772/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/772/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/772/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/772/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/772/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=772&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/09/20/how-to-move-asm-database-files-from-one-location-to-another-by-cp-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>E-Business Suite Technology-Related Sessions at OpenWorld 2011</title>
		<link>http://heliosguneserol.wordpress.com/2011/09/14/e-business-suite-technology-related-sessions-at-openworld-2011/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/09/14/e-business-suite-technology-related-sessions-at-openworld-2011/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 14:19:26 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[Hot news - Oracle E-Business Suite]]></category>
		<category><![CDATA[EBS+OOW+Steven chan]]></category>
		<category><![CDATA[OOW]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=768</guid>
		<description><![CDATA[As you know big day is coming &#8220;Oracle Open World 2011 &#8220;&#8230; It will be happen between October 2-6 2011 at San Francisco- USA Steven Chan has been made one good post on his blog as always he does and he published E-Business Suite Related session at this event. Some of you can have chance [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=768&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you know big day is coming <strong>&#8220;Oracle Open World 2011 &#8220;</strong>&#8230; It will be happen between <strong>October 2-6 2011</strong> at <strong>San Francisco- USA</strong></p>
<p><strong>Steven Chan</strong> has been made one good post on his blog as always he does and he published E-Business Suite Related session at this event.</p>
<p>Some of you can have chance to join those session at <strong>OOW</strong> this year. For can see details please <a title="Event" href="http://blogs.oracle.com/stevenChan/entry/e_business_suite_technology_related" target="_blank">click here</a></p>
<p>For can get more information about OOW 2011 please <a title="OOW" href="http://www.oracle.com/openworld/index.html" target="_blank">visit here</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/768/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/768/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/768/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=768&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/09/14/e-business-suite-technology-related-sessions-at-openworld-2011/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
		<item>
		<title>How to relink oracle binaries?</title>
		<link>http://heliosguneserol.wordpress.com/2011/09/14/how-to-relink-oracle-binaries/</link>
		<comments>http://heliosguneserol.wordpress.com/2011/09/14/how-to-relink-oracle-binaries/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 07:25:04 +0000</pubDate>
		<dc:creator>Gunes Erol</dc:creator>
				<category><![CDATA[FAQ - E-Business Suite General]]></category>
		<category><![CDATA[relink binaries]]></category>
		<category><![CDATA[Relink oracle]]></category>
		<category><![CDATA[relink oracle binaries on windows]]></category>

		<guid isPermaLink="false">http://heliosguneserol.wordpress.com/?p=761</guid>
		<description><![CDATA[Sometimes We need to require to relink oracle binaries because of some number of our cases and also We need to do it because of solution given by oracle support. The following method will relink the oracle executables. For Unix system set $ORACLE_HOME, set $ORACLE_SID If you are using E-Business Suite login your system as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=761&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Sometimes We need to require to relink oracle binaries because of some number of our cases and also We need to do it because of solution given by oracle support.</p>
<p>The following method will relink the oracle executables.</p>
<p>For Unix system</p>
<p>set $ORACLE_HOME,</p>
<p>set $ORACLE_SID</p>
<p>If you are using E-Business Suite login your system as oramgr user than source env file</p>
<p>Go to $ORACLE_HOME/bin  path than run below commands for can relink binaries</p>
<p>$ORACLE_HOME/bin/relink all;</p>
<p>or you can use</p>
<p>$ORACLE_HOME/bin/relink oracle;</p>
<p><strong>Referance:</strong></p>
<p><span style="font-family:helvetica;"><strong>How to Relink Oracle Database Software on UNIX [ID 131321.1]</strong></span></p>
<p>If you are on 11gR2 level than I suggest also see below note:</p>
<p><span style="font-family:helvetica;"><strong>Oracle 11gR2 Relink New Feature [ID 883299.1]</strong></span></p>
<p>If you are using RAC than I suggest also see below note:</p>
<p><span style="font-family:helvetica;"><strong>How to Check Whether Oracle Binary/Instance is RAC Enabled and Relink Oracle Binary in RAC [ID 284785.1]</strong></span></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/heliosguneserol.wordpress.com/761/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/heliosguneserol.wordpress.com/761/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/heliosguneserol.wordpress.com/761/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/heliosguneserol.wordpress.com/761/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/heliosguneserol.wordpress.com/761/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/heliosguneserol.wordpress.com/761/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/heliosguneserol.wordpress.com/761/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/heliosguneserol.wordpress.com/761/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=heliosguneserol.wordpress.com&amp;blog=12919477&amp;post=761&amp;subd=heliosguneserol&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://heliosguneserol.wordpress.com/2011/09/14/how-to-relink-oracle-binaries/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/fb09406a0884527c962fca5f8ee9dbab?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">guneserol</media:title>
		</media:content>
	</item>
	</channel>
</rss>
