<?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>Julian Dontcheff&#039;s Database Blog</title>
	<atom:link href="http://juliandontcheff.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://juliandontcheff.wordpress.com</link>
	<description>The good DBA is one who learns from his mistakes, the best DBA is one who learns from other DBA&#039;s mistakes</description>
	<lastBuildDate>Thu, 26 Jan 2012 13:35:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='juliandontcheff.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/703aa2b101922b98e88abebde92a92a0?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Julian Dontcheff&#039;s Database Blog</title>
		<link>http://juliandontcheff.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://juliandontcheff.wordpress.com/osd.xml" title="Julian Dontcheff&#039;s Database Blog" />
	<atom:link rel='hub' href='http://juliandontcheff.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Restoring the Oracle database</title>
		<link>http://juliandontcheff.wordpress.com/2012/01/11/restoring-the-oracle-database-when-is-it-ready-can-i-start-start-the-application/</link>
		<comments>http://juliandontcheff.wordpress.com/2012/01/11/restoring-the-oracle-database-when-is-it-ready-can-i-start-start-the-application/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 04:08:09 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[Database tuning]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Oracle database]]></category>
		<category><![CDATA[RMAN]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=1668</guid>
		<description><![CDATA[If you are reading this, there is high chance that someone has been breathing behind your back while you were restoring a database or mildly harassing you over the phone with the only question: when do you think that the database will be open for WebLogic connections? Indeed when? There is no way to say [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=1668&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are reading this, there is high chance that someone has been breathing behind your back while you were restoring a database or mildly harassing you over the phone with the only question: when do you think that the database will be open for WebLogic connections?</p>
<p>Indeed when? There is no way to say precisely. You can guess based on the time the backup had taken in average but that is just an estimate. After the restore, there might be a nasty long sequence of archivelog files that has to be applied (with the hope that none is missing) and then you can open with resetlogs. Unless you hit a &#8220;feature&#8221; or two.</p>
<p>There are 5 major reasons why RMAN restore performance may be poor:</p>
<p><strong>1. Missing statistics</strong>: Before a restore even begins the the control file is queried, datafile headers are read, media managers are initialised, the catalog is resynced, PL/SQL is generated and compiled, RMAN metadata either in the control file or the catalog is queried. All this incurs I/O against the control file, the datafile headers and the recovery catalog. </p>
<p>Make sure that the catalog database is analyzed and reorganized on regular basis. It also requires regular maintenance: crosscheck backup, etc. </p>
<p>Generate statistics on the fixed objects, with the GATHER_FIXED_OBJECTS_STATS procedure. This should be done when the database has been running for awhile with generic workload, so the information in the fixed objects reflects a reasonable state of the database load.  </p>
<p>Gather the statistics with the following command:   </p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
exec dbms_stats.gather_fixed_objects_stats;
</pre></p>
<p>Believe it or now, often adding this to the RMAN script might help for both faster backup and restore:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
alter session set optimizer_mode=RULE;
</pre></p>
<p><strong>2. The backup is hardware multiplexed</strong>: all channels write to a single tape device. If the media manager does not support multiplexing only one backuppiece can be returned at a time. Considering the fact that each backuppiece is multiplexed with the rest of the others, this restore would require as many scans as the number of channels allocated of at most the whole backup size each (with a tape rewind after each scan). </p>
<p><strong>3. Individual files or tablespaces are being restored</strong>: A restore of a single file needs a scan of potentially the whole database backup depending on where the header of the file being restored is positioned on the tape. The worst situation is when single file is being restored so that the file&#8217;s block header is the last block written to the backuppiece.</p>
<p><strong>4. A different number of channels is used for restore compared to backup</strong>: The number of channels to be allocated should be equal to the number of physical tape drives. Try to do a couple of things:</p>
<p>Set enough big large pool: set LARGE_POOL_SIZE to at least 256M<br />
Enable the backup_tape_io_slaves by setting BACKUP_TAPE_IO_SLAVES = true </p>
<p>However, some media managers will allow hardware multiplexing to a single tape and are able to parallelize the restore (in the media manager layer) such that the backuppieces are returned from a single tape to multiple channels in parallel. In such a situation it is possible to use an unpublished SET PARALLELMEDIARESTORE OFF command to make RMAN ignore this check.</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">

SET PARALLELMEDIARESTORE OFF;
      RUN { ...
        RESTORE DATABASE;
        RECOVER DATABASE; ...
      }
</pre></p>
<p><strong>5. The RMAN relation with bugs is not a new one.</strong> The &#8220;mend-it-or-end-it&#8221; principle does not play any role here. 5 years ago, Jaffar posted on his blog <a href="http://jaffardba.blogspot.com/2007/03/known-rman-performance-problems.html" title="Known RMAN Performance Problems" target="_blank">Known RMAN Performance Problems</a>. It is worth checking again the MOS note 247611.1</p>
<p>Yet, here are some Oracle or MML bugs not fixed by January 1st, 2012:</p>
<p>Bug 12363733: restoring backups are very slow (reproduced both with asm and filesystem)<br />
Bug 7573468: RMAN duplicate until time very slow<br />
Bug 11835641: 11gr2 – RMAN restore took more time – duplicate or restore is slow<br />
Bug 10210264: RMAN restore is slower following upgrade to 11.2<br />
Bug 11827990: select name from v$datafile wait on “rdbms ipc reply” on rman restore<br />
Bug 12543119: EM not using correct ASM diskgroup to restore datafiles when creating clone<br />
Bug 11892765: please allow RMAN restore to pre-allocate file extents<br />
Bug 9556740: RMAN job failed when using sudo<br />
Bug 9724316: dbclone not choosing the correct controlfile for the clone<br />
Bug 9845029: OEM clone 11gR2 ASM database fails during recovery<br />
Bug 5381095: RMAN: poor restore performance in nocatalog mode<br />
Bug 10093810: RMAN backup need to maintain an index for file header block for each file<br />
Bug 9918138: RMAN restoring a compressed backup running very slow<br />
Bug 6964596: RMAN single channel restore performance is faster than 6 channels<br />
Bug 5462916: RMAN: recover database skip forever tbs with ORA-01157<br />
Bug 2608118: restore of autobackup controlfile take a long time to complete<br />
Bug 1533686: RMAN hangs when restoring via adsm with an ops target db<br />
Bug 2911857: bad performance of RMAN duplication with large number of files (&gt; 1500)<br />
Bug 13349761: RMAN RESYNC IS SLOW<br />
Bug 6770620: RMAN recover of copy database command consumes CPU<br />
&#8211;<br />
Bug 13109129: after upgrade to 11.2 compressed RMAN backups are slow<br />
Bug 13066081: RMAN unregister database is slow/hangs<br />
Bug 12896388: RMAN backup slower with &#8211; check logical &#8211; option on compressed tablespace<br />
Bug 13500084: RMAN switch command is taking too long<br />
Bug 13064833: RMAN process hangs after finished backup<br />
Bug 13520050: RMAN session does not terminate- loops -spinning on cpu when destination is full</p>
<p>Some of the bugs will never be probably fixed as you can see that they may get, and are closed (or suspended) because of vendor OS problems, problem cannot be replicated, closed as duplicate, information not avaiable, etc.</p>
<p>Or how about those bugs with status 92: closed, not a bug. For example bug 11835641 is actually not a bug? Right. </p>
<p>Additional information: <a href="http://download.oracle.com/docs/cd/E11882_01/backup.112/e10642.pdf" title="11.2 Oracle Database Backup and Recovery User's Guide" target="_blank">11.2 Oracle Database Backup and Recovery User&#8217;s Guide</a>. Check Part VI, Tuning and Troubleshooting.</p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/bugs/'>Bugs</a>, <a href='http://juliandontcheff.wordpress.com/category/database-tuning/'>Database tuning</a>, <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>, <a href='http://juliandontcheff.wordpress.com/category/oracle-database/'>Oracle database</a>, <a href='http://juliandontcheff.wordpress.com/category/rman/'>RMAN</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/1668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/1668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/1668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/1668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/1668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/1668/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/1668/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/1668/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=1668&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2012/01/11/restoring-the-oracle-database-when-is-it-ready-can-i-start-start-the-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>
	</item>
		<item>
		<title>2011 in review</title>
		<link>http://juliandontcheff.wordpress.com/2012/01/01/2011-in-review/</link>
		<comments>http://juliandontcheff.wordpress.com/2012/01/01/2011-in-review/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 09:55:51 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2497</guid>
		<description><![CDATA[The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog. Here&#8217;s an excerpt: The concert hall at the Syndey Opera House holds 2,700 people. This blog was viewed about 30,000 times in 2011. If it were a concert at Sydney Opera House, it would take about 11 sold-out performances for that many [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2497&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The WordPress.com stats helper monkeys prepared a 2011 annual report for this blog.</p>
<div style="background:url('/wp-content/mu-plugins/annual-reports/img/emailteaser.jpg') no-repeat center center;height:300px;"></div>
<p>Here&#8217;s an excerpt:</p>
<blockquote><p>The concert hall at the Syndey Opera House holds 2,700 people.  This blog was viewed about <strong>30,000</strong> times in 2011.  If it were a concert at Sydney Opera House, it would take about 11 sold-out performances for that many people to see it.</p></blockquote>
<p><a href="/2011/annual-report/">Click here to see the complete report.</a></p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2497/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2497/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2497/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2497&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2012/01/01/2011-in-review/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>
	</item>
		<item>
		<title>&#8220;There is always next year&#8221;</title>
		<link>http://juliandontcheff.wordpress.com/2011/12/27/there-is-always-next-year/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/12/27/there-is-always-next-year/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 14:40:10 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2452</guid>
		<description><![CDATA[Database administration has been heavily influenced by 2 main trends during the last years: 1. Enterprise Manager Grid/Cloud Control 2. The automation features introduced with Oracle 10g and especially with Oracle 11g The job of the modern DBA is now more like the job of an analytical manager than of a database operator. Several companies [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2452&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Database administration has been heavily influenced by 2 main trends during the last years:</p>
<p>1. Enterprise Manager Grid/Cloud Control<br />
2. The automation features introduced with Oracle 10g and especially with Oracle 11g</p>
<p>The job of the modern DBA is now more like the job of an analytical manager than of a database operator. Several companies hire now DBAs who are not just technicians but data and database professionals with high sense for analytical thinking and logical intuition. </p>
<p>Chris Foot wrote last year an excellent article on <a href="http://www.remotedbaexperts.com/Blog/2010/01/the-future-of-database-tuning-and-database-administration/" title="The Future of Database Tuning and Database Administration" target="_blank">The Future of Database Tuning and Database Administration</a>. As Chris says, &#8220;The new breed of top tuners will be the administrators who focus on how to use the toolsets and interpret their output.&#8221; The times of drilling down into X$ tables and V_$ views are over. DBAs who use most efficiently Grid Control/Cloud Control and turn on properly most (if not all) automated database features are the ones achieving best results in the field. </p>
<p>Let me quote Chris again: &#8220;.. reading SQL traces and statistics dumps will be a thing of the past.&#8221; The Advisors, the AWR and the ADDM reports reveal much more at a glance than we ever were able to comprehend after reading outputs from complex dictionary queries, statspack or trace files. </p>
<p>I am not underestimating the skills and knowledge of understanding mutexes, private redo strands and Bloom filters but with such a vast product like the Oracle database one should very carefully decide how and on what to concentrate his skills and time.</p>
<p>The DBA profession has several subfields and different trends prevail from time to time but one is the skill that is most wanted and badly needed: performance tuning. It is the most difficult one to learn and master. </p>
<p>Wonder why Grid Control and database automation are changing the DBA profession? </p>
<p>- using Grid/Cloud Control, the packs it comes with, and all the integrated advisors and recommendation reports can reduce the time drastically. Understand it in a way that the time a DBA can spend on an issue might vary from minutes to hours (if not days) depending on if Grid Control is used or not. I think EM is still an underestimated tool mostly because of the fact that companies cannot make/decide on the proper investments. Most managers cannot get the fact that those Grid Control packs can produce significant ROI in their database department. Often, they just can&#8217;t get it. Even if you give it to them in a box names &#8220;It&#8221;.</p>
<p>- automation within the database is where Oracle is going to. Best results with databases can be achieved by benefiting from all automated features offered by Oracle. <a href="http://juliandontcheff.wordpress.com/2011/04/16/automating-the-oracle-database/" title="Automating the Oracle Database" target="_blank">Automating the Oracle Database</a> is something overlooked and underestimated. Mostly by the old generation of DBAs who are often suspicious about everything. Let me quote Shunryu Suzuki/Steve Jobs: &#8220;In the beginner&#8217;s mind there are many possibilities, in the expert&#8217;s mind there are few.&#8221;</p>
<p>However, with all those new features, there comes a flock of bugs and looks like their fixes cannot catch up with the new versions and patches. Keeping all these new features in sync with the database kernel is not at all so easy. As Chris says, &#8220;our role will be how to utilize the ever-increasing number of features provided by the database to solve business problems&#8221; and I would add how to solve the business problems caused by the bugs these new features introduce. Catch 22, right?</p>
<p>According to <a href="http://www.dba-oracle.com/art_dbazine_2020_p2.htm" title="Oracle 2020: A Glimpse Into the Future of Database Management" target="_blank">Oracle 2020: A Glimpse Into the Future of Database Management</a>, during this year 2011, &#8220;Oracle’s Larry Elision finances the Worldwide Internet Identification Database, requiring non-anonymous access and reducing cybercrime. Ellison receives the Nobel Peace Prize for his humanitarian efforts.&#8221; I am almost certain that no one takes the stuff written there seriously but there is always next year <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2452/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2452&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/12/27/there-is-always-next-year/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>
	</item>
		<item>
		<title>On 4 undocumented DataPump parameters</title>
		<link>http://juliandontcheff.wordpress.com/2011/12/20/on-4-undocumented-datapump-parameters/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/12/20/on-4-undocumented-datapump-parameters/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 16:14:30 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[DBA]]></category>
		<category><![CDATA[Oracle utilities]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2392</guid>
		<description><![CDATA[DataPump is probably the best free Oracle utility/tool ever developed. With the exception of SQL*Plus of course which is somehow naturally excluded. It is like SELECT being the most common command written/typed by DBAs and Developers. Guess which is the next one after SELECT? You might not want to believe it but it seems to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2392&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>DataPump is probably the best free Oracle utility/tool ever developed. With the exception of SQL*Plus of course which is somehow naturally excluded.</p>
<p>It is like SELECT being the most common command written/typed by DBAs and Developers. Guess which is the next one after SELECT? You might not want to believe it but it seems to be EXIT <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Now, 11g came with several new parameters: COMPRESSION, ENCRYPTION, TRANSPORTABLE, NETWORK_LINK, PARTITION_OPTIONS, DATA_OPTIONS, REUSE_DUMPFILES, REMAP_TABLE, etc. which are probably well-known but here are few undocumented ones you can have as an ace up your sleeve. </p>
<p><strong>1. METRICS</strong></p>
<p>You can use the parameter METRICS=Y to include additional logging information about the number of objects and the time it took to process them in the log file. With METRICS, additional information can be obtained about the number of objects that were processed and the time it took for processing them.  </p>
<p>Note that the METRICS parameter does not create any additional trace files. Instead, the extra details are logged in the logfile of the Export Data Pump or Import Data Pump job. </p>
<p>Here is an example:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
expdp \'/ as sysdba\' DUMPFILE=data_pump_dir:sysman_%U.dat SCHEMAS=sysman_apm JOB_NAME=sysman_pump METRICS=Y
...
[oracle@zurich Desktop]$ expdp \'/ as sysdba\' DUMPFILE=data_pump_dir:sysman_%U.dat SCHEMAS=sysman_apm JOB_NAME=sysman_pump METRICS=Y

Export: Release 11.2.0.3.0 - Production on Tue Dec 20 10:46:08 2011

Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Starting &quot;SYS&quot;.&quot;SYSMAN_PUMP&quot;:  &quot;/******** AS SYSDBA&quot; DUMPFILE=data_pump_dir:sysman_%U.dat SCHEMAS=sysman_apm JOB_NAME=sysman_pump METRICS=Y 
Estimate in progress using BLOCKS method...
Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
Total estimation using BLOCKS method: 320 KB
Processing object type SCHEMA_EXPORT/USER
     Completed 1 USER objects in 0 seconds
...
Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
     Completed 1 DEFAULT_ROLE objects in 2 seconds
Processing object type SCHEMA_EXPORT/TABLESPACE_QUOTA
     Completed 1 TABLESPACE_QUOTA objects in 8 seconds
Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
     Completed 1 PROCACT_SCHEMA objects in 27 seconds
Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
...
. . exported &quot;SYSMAN_APM&quot;.&quot;PATCH_RUN&quot;                        0 KB       0 rows
Master table &quot;SYS&quot;.&quot;SYSMAN_PUMP&quot; successfully loaded/unloaded
******************************************************************************
Dump file set for SYS.SYSMAN_PUMP is:
  /u01/app/oracle/admin/CLOUD/dpdump/sysman_01.dat
Job &quot;SYS&quot;.&quot;SYSMAN_PUMP&quot; successfully completed at 10:49:19
</pre></p>
<p><strong>2. ACCESS_METHOD</strong></p>
<p>In some situations, the undocumented parameter ACCESS_METHOD can be used to enforce a specific method to unload or load the data. </p>
<p>If the parameter is not specified, then Data Pump will automatically choose the best method to load or unload the data. </p>
<p>The parameter can only be specified when the Data Pump job is initially started i.e., the parameter cannot be specified when the job is restarted. </p>
<p>If the parameter is specified, the method of loading or unloading the data is enforced on all tables that need to be loaded or unloaded with the job. </p>
<p>Enforcing a specific method may result in a slower performance of the overall Data Pump job.</p>
<p>Here is an example:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
expdp \'/ as sysdba\'  ... ACCESS_METHOD=DIRECT_PATH  
expdp \'/ as sysdba\'  ... ACCESS_METHOD=EXTERNAL_TABLE 

impdp \'/ as sysdba\'  ... ACCESS_METHOD=DIRECT_PATH  
impdp \'/ as sysdba\'  ... ACCESS_METHOD=EXTERNAL_TABLE 
</pre></p>
<p><strong>3. TRACE</strong></p>
<p>Tracing can be enabled by specifying an 7 digit hexadecimal mask in the TRACE parameter of expdp or impdp. The first three digits enable tracing for a specific DataPump component, while the last four digits are usually: 0300. Any leading zero&#8217;s can be omitted, and the value specified for the TRACE parameter is not case sensitive. TRACE does not add anything to the output of DataPump, it creates additional trace files. </p>
<p>Here is a summary of the Data Pump trace levels:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
  10300 SHDW: To trace the Shadow process 
  20300 KUPV: To trace Fixed table
  40300 'div' To trace Process services
  80300 KUPM: To trace Master Control Process 
 100300 KUPF: To trace File Manager
 200300 KUPC: To trace Queue services
 400300 KUPW: To trace Worker process(es)         
 800300 KUPD: To trace Data Package
1000300 META: To trace Metadata Package
1FF0300 'all' To trace all components, full tracing
</pre></p>
<p>As you see, in order to trace all Data Pump components, level 1FF0300 can be specified, here is an example:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
impdp \'/ as sysdba\' NETWORK_LINK=edw_p SCHEMAS=CLOUD PARALLEL=8 JOB_NAME=net_pump EXCLUDE=statistics TRACE=1FF0300 
...
SHDW: *** GET_STATUS_VERSION call ***
SHDW:     Version = 9999
KUPP:10:58:22.050: Input trace/debug flags: 01FF0300 = 33489664
KUPP:10:58:22.050: Current trace/debug flags: 01FF0300 = 33489664
SHDW:10:58:22.050: Current user = SYS
SHDW:10:58:22.050: Current schema = SYS
SHDW:10:58:22.050: Current language = AMERICAN_AMERICA.AL32UTF8
SHDW:10:58:22.052: Current session address = 0000000077F7AFA0
SHDW:10:58:22.052: *** OPEN call ***
SHDW:10:58:22.052:     operation       = IMPORT
SHDW:10:58:22.052:     job_mode        = schema
SHDW:10:58:22.052:     remote_link     = edw_p
SHDW:10:58:22.052:     version         = 
SHDW:10:58:22.052:     compression     = 2
KUPV:10:58:22.052: Open request for job: SYS.NET_PUMP
KUPV:10:58:22.058: Master Table create statement: CREATE TABLE &quot;SYS&quot;.&quot;SYSMAN_PUMP&quot; (process_order NUMBER, duplicate NUMBER, dump_fileid NUMBER, dump_position NUMBER, dump_length NUMBER, dump_orig_length NUMBER 
...
</pre></p>
<p>The 3 types of trace files can be found in $ADR_HOME/trace:<br />
- Data Pump Master Control Processes files have format: SID_dm_process_id.trc<br />
- Data Pump Worker Process trace files have format: SID_dw_process_id.trc<br />
- Data Pump Shadow Process trace files have format: SID_ora_process_id.trc  </p>
<p><strong>4. KEEP_MASTER</strong></p>
<p>If the undocumented DataPump parameter KEEP_MASTER=Y is used, then the Master Table is not deleted after the job completes. The drop of the master table does not lead to any data dictionary corruption and if you keep the master table after the job completes, then a drop of the master table afterwards will not cause any corruption either.</p>
<p>You might use this parameter if you create transportable tablespaces where the source and the destination are both ASM based.</p>
<p>Here is an example:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
expdp \'/ as sysdba\' directory=DUMPDIR DUMPFILE=skat_full.dmp LOGFILE=skat_full.log FULL=Y KEEP_MASTER=Y
</pre></p>
<p><strong>One last note</strong>: More than 50 bugs related to DataPump have been fixed in Oracle Database 11g Release 2 (11.2.0.3). Check document <a href="https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&amp;id=()),(page=KBNavigator&amp;id=(viewingMode=1143&amp;bmDocDsrc=KB&amp;bmDocID=1348303.1&amp;bmDocType=PATCH&amp;from=BOOKMARK&amp;bmDocTitle=11.2.0.3%20Patch%20Set%20-%20List%20of%20Bug%20Fixes%20by%20Problem%20Type))" title="Bugs fixed in the 11.2.0.3 Patch Set" target="_blank">1348303.1</a>: List of Bug Fixes by Problem Type available on the My Oracle Support Web site. </p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>, <a href='http://juliandontcheff.wordpress.com/category/oracle-utilities/'>Oracle utilities</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2392/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2392/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2392/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2392&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/12/20/on-4-undocumented-datapump-parameters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>
	</item>
		<item>
		<title>DBA: Don&#8217;t Bother Asking</title>
		<link>http://juliandontcheff.wordpress.com/2011/11/23/dba-dont-bother-asking/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/11/23/dba-dont-bother-asking/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 15:05:47 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2351</guid>
		<description><![CDATA[To all of you from all of me what DBA can mean and be! DBA: FlyDBA.com DBA: Delaware Bankers Association DBA: Double Barrel Ale DBA: Design Business Association DBA: Disc Brakes Australia DBA: Doing Business as Brooklyn DBA: Differently-Abled Business Association DBA: Dual Band Amplifier DBA: Detroit Batting Academy DBA: Dallas Business Association DBA: Double [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2351&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>To all of you from all of me what DBA can mean and be!</strong></p>
<p>DBA: FlyDBA.com</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/flydba.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/flydba.png?w=604&#038;h=385" alt="" title="flydba" width="604" height="385" class="aligncenter size-full wp-image-2374" /></a></p>
<p>DBA: Delaware Bankers Association</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/delaware-bankers-association.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/delaware-bankers-association.png?w=604&#038;h=289" alt="" title="Delaware Bankers Association" width="604" height="289" class="aligncenter size-full wp-image-2373" /></a></p>
<p>DBA: Double Barrel Ale </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/double-barrel-ale.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/double-barrel-ale.png?w=604" alt="" title="Double Barrel Ale"   class="aligncenter size-full wp-image-2372" /></a></p>
<p>DBA: Design Business Association</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/design-business-association.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/design-business-association.png?w=604" alt="" title="Design Business Association"   class="aligncenter size-full wp-image-2357" /></a></p>
<p>DBA: Disc Brakes Australia</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/disc-brakes-australia.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/disc-brakes-australia.png?w=604" alt="" title="Disc Brakes Australia"   class="aligncenter size-full wp-image-2358" /></a></p>
<p>DBA: Doing Business as Brooklyn</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/doing-business-as-brooklyn.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/doing-business-as-brooklyn.png?w=604" alt="" title="Doing Business as Brooklyn"   class="aligncenter size-full wp-image-2359" /></a></p>
<p>DBA: Differently-Abled Business Association </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/differently-abled-business-association.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/differently-abled-business-association.png?w=604" alt="" title="Differently-Abled Business Association"   class="aligncenter size-full wp-image-2360" /></a></p>
<p>DBA: Dual Band Amplifier</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/dual-band-amplifier.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/dual-band-amplifier.png?w=604" alt="" title="Dual Band Amplifier"   class="aligncenter size-full wp-image-2361" /></a></p>
<p>DBA: Detroit Batting Academy</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/detroit-batting-academy.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/detroit-batting-academy.png?w=604" alt="" title="Detroit Batting Academy"   class="aligncenter size-full wp-image-2362" /></a></p>
<p>DBA: Dallas Business Association</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/dallas-business-association.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/dallas-business-association.png?w=604" alt="" title="Dallas Business Association"   class="aligncenter size-full wp-image-2363" /></a></p>
<p>DBA: Double Barrel Air Pump  </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/double-barrel-air-pump.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/double-barrel-air-pump.png?w=604" alt="" title="Double Barrel Air Pump"   class="aligncenter size-full wp-image-2364" /></a></p>
<p>DBA: Deter&#8217;s Beer Asylum </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/deters-beer-asylum.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/deters-beer-asylum.png?w=604" alt="" title="Deter&#039;s Beer Asylum"   class="aligncenter size-full wp-image-2365" /></a></p>
<p>DBA: Doctor of Business Administration </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/doctor-of-business-administration.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/doctor-of-business-administration.png?w=604" alt="" title="Doctor of Business Administration"   class="aligncenter size-full wp-image-2366" /></a></p>
<p>DBA: Defense Base Act   </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/defense-base-act.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/defense-base-act.png?w=604&#038;h=323" alt="" title="Defense Base Act" width="604" height="323" class="aligncenter size-full wp-image-2367" /></a></p>
<p>DBA: Digital Broadcasting Australia  </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/digital-broadcasting-australia.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/digital-broadcasting-australia.png?w=604" alt="" title="Digital Broadcasting Australia"   class="aligncenter size-full wp-image-2368" /></a></p>
<p>DBA: Dollar Bill Acceptors    </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/dollar-bill-acceptors.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/dollar-bill-acceptors.png?w=604" alt="" title="Dollar Bill Acceptors"   class="aligncenter size-full wp-image-2369" /></a></p>
<p>DBA: Deaf Basketball Association   </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/deaf-basketball-association.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/deaf-basketball-association.png?w=604&#038;h=304" alt="" title="Deaf Basketball Association" width="604" height="304" class="aligncenter size-full wp-image-2370" /></a></p>
<p>DBA: Dumb But Adorable  </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/dumb-but-adorable.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/dumb-but-adorable.png?w=604" alt="" title="Dumb But Adorable"   class="aligncenter size-full wp-image-2371" /></a></p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2351/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2351/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2351/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2351&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/11/23/dba-dont-bother-asking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/flydba.png" medium="image">
			<media:title type="html">flydba</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/delaware-bankers-association.png" medium="image">
			<media:title type="html">Delaware Bankers Association</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/double-barrel-ale.png" medium="image">
			<media:title type="html">Double Barrel Ale</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/design-business-association.png" medium="image">
			<media:title type="html">Design Business Association</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/disc-brakes-australia.png" medium="image">
			<media:title type="html">Disc Brakes Australia</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/doing-business-as-brooklyn.png" medium="image">
			<media:title type="html">Doing Business as Brooklyn</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/differently-abled-business-association.png" medium="image">
			<media:title type="html">Differently-Abled Business Association</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/dual-band-amplifier.png" medium="image">
			<media:title type="html">Dual Band Amplifier</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/detroit-batting-academy.png" medium="image">
			<media:title type="html">Detroit Batting Academy</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/dallas-business-association.png" medium="image">
			<media:title type="html">Dallas Business Association</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/double-barrel-air-pump.png" medium="image">
			<media:title type="html">Double Barrel Air Pump</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/deters-beer-asylum.png" medium="image">
			<media:title type="html">Deter&#039;s Beer Asylum</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/doctor-of-business-administration.png" medium="image">
			<media:title type="html">Doctor of Business Administration</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/defense-base-act.png" medium="image">
			<media:title type="html">Defense Base Act</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/digital-broadcasting-australia.png" medium="image">
			<media:title type="html">Digital Broadcasting Australia</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/dollar-bill-acceptors.png" medium="image">
			<media:title type="html">Dollar Bill Acceptors</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/deaf-basketball-association.png" medium="image">
			<media:title type="html">Deaf Basketball Association</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/dumb-but-adorable.png" medium="image">
			<media:title type="html">Dumb But Adorable</media:title>
		</media:content>
	</item>
		<item>
		<title>Beautiful mind: DBA Work Motivation</title>
		<link>http://juliandontcheff.wordpress.com/2011/11/12/beautiful-mind-dba-work-motivation/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/11/12/beautiful-mind-dba-work-motivation/#comments</comments>
		<pubDate>Sat, 12 Nov 2011 15:01:26 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[DBA]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2263</guid>
		<description><![CDATA[Theodore Roosevelt: Far and away the best prize that life has to offer is the chance to work hard at work worth doing. Margaret Thatcher: I do not know anyone who has got to the top without hard work. That is the recipe. It will not always get you to the top, but should get [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2263&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><strong>Theodore Roosevelt:</strong> Far and away the best prize that life has to offer is the chance to work hard at work worth doing.</p>
<p><strong>Margaret Thatcher:</strong> I do not know anyone who has got to the top without hard work. That is the recipe. It will not always get you to the top, but should get you pretty near.</p>
<p><strong>Woody Allen:</strong> I don&#8217;t want to achieve immortality through my work. I want to achieve it through not dying. </p>
<p>During Oracle OpenWorld 2011, <a href="http://www.pythian.com/about/management_team/paul_vallee/" title="Paul Vallee" target="_blank">Paul Vallee</a> (Founder and Executive Chairman at The Pythian Group) and <a href="http://www.pythian.com/about/management_team/alex_gorbachev" title="Alex Gorbachev" target="_blank">Alex Gorbachev</a> (Chief Technology Officer at The Pythian Group) organized a DBA Manager meeting where (probably) the most interesting topic discussed was what motivates DBAs. </p>
<p>The internet is full of articles, debates and research done on work motivation but this one is worth watching:</p>
<p><object width="604" height="340"><param name="movie" value="http://www.youtube.com/v/u6XAPnuFjJc?version=3&#038;feature=oembed"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/u6XAPnuFjJc?version=3&#038;feature=oembed" type="application/x-shockwave-flash" width="604" height="340" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Interesting enough, same holds for DBAs: independence, mastery and purpose are the key motivators. All combined, they lead to self satisfaction from the DBA profession and although money might always come in between, it is by far a very short term motivation factor. Although, note that for about half of the population money is the primary motivator to perform the job properly.</p>
<p><strong>1. Independence</strong></p>
<p>Autonomy for the DBA is crucial in IT. Those DBA managers who micromanage their DBAs are doomed to failure. A DBA Manager should trust his/her DBAs as they should likewise trust him/her. And this would be the ideal situation.</p>
<p><strong>2. Mastery </strong></p>
<p>Wonder why so many people have blogs, website and answer questions in database forums? And they do it for free. Even writing a book is never for financial benefits. It is the hidden will inside us to develop skills and share them with others. </p>
<p><strong>3. Purpose</strong></p>
<p>Every DBA has a purpose in his career: one purpose or more than one purpose, a small one or a big one. And the purpose might change the direction of his/her DBA&#8217;s career. Call it a career goal, an internal motto. And of course, I also have one.</p>
<p>Another interesting concept in the DBA profession is that of the over-motivated <strong>Cowboy DBA: a person who with very good intentions screws up the production system quite quickly</strong>:</p>
<p>- use a new init.ora parameter (or an underscore one) in production without checking all bugs related to that parameter or test it in advance<br />
- restart a production database in order to fix something and what that thing was remains usually a mistery<br />
- kill all or some user sessions in production to &#8220;release&#8221; locks: <pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">select 'alter system kill session '''||sid||','||serial#||''';' 
from v$session where username = 'PROD_USER';</pre>- run &#8220;rm -rf *&#8221; without additionally typing &#8220;pwd&#8221;</p>
<p>Let me quote Don Burleson: &#8220;As every DBA knows, all developers are secretly studying database administration&#8221;. His addition is &#8220;and actively plotting to take their jobs&#8221; while mine would be &#8220;and are potential cowboy DBAs&#8221;. That is why DBAs do not usually give developers access to Production?</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/cat_lion.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/cat_lion.png?w=604" alt="" title="cat_lion"   class="aligncenter size-full wp-image-2344" /></a></p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2263/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2263/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2263/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2263&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/11/12/beautiful-mind-dba-work-motivation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/cat_lion.png" medium="image">
			<media:title type="html">cat_lion</media:title>
		</media:content>
	</item>
		<item>
		<title>The Newest init.ora Parameter in the Oracle Database</title>
		<link>http://juliandontcheff.wordpress.com/2011/11/06/the-newest-init-ora-parameter-in-oracle/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/11/06/the-newest-init-ora-parameter-in-oracle/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 12:18:01 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[Database tuning]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Init.ora]]></category>
		<category><![CDATA[Oracle database]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2285</guid>
		<description><![CDATA[Altogether there are 347 init.ora parameters in Oracle Database 11.2.0.3. Looking into all documented and undocumented parameters in 11.2.0.3, we witness a high number: 2752. 11.2.0.3 does not sparkle with any fancy features and no one is expecting it to but there is one new init.ora parameter added by Oracle: awr_snapshot_time_offset. Why is it needed? [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2285&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Altogether there are 347 init.ora parameters in Oracle Database 11.2.0.3. Looking into all documented and undocumented parameters in 11.2.0.3, we witness a high number: 2752.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/init_ora_parameter.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/init_ora_parameter.png?w=604" alt="" title="init_ora_parameter"   class="aligncenter size-full wp-image-2301" /></a></p>
<p>11.2.0.3 does not sparkle with any fancy features and no one is expecting it to but there is one new init.ora parameter added by Oracle: <strong>awr_snapshot_time_offset</strong>.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/awr_snapshot_time_offset.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/awr_snapshot_time_offset.png?w=604&#038;h=255" alt="" title="awr_snapshot_time_offset" width="604" height="255" class="aligncenter size-full wp-image-2298" /></a></p>
<p>Why is it needed? The answer is very clear in case you have a server with several databases running on it. Consolidation has been fashionable for the past decade and many scattered corporative databases have perched on the same computer.</p>
<p>You might have observed those spikes on the top of every hour when all the AWR snapshots are taken. How do you avoid this, i.e., say you have 12 databases on the server and you want snapshots taken on hour bases but within 5 minutes difference for every database?</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/awr_cpu_spikes.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/awr_cpu_spikes.png?w=604&#038;h=161" alt="" title="awr_cpu_spikes" width="604" height="161" class="aligncenter size-full wp-image-2311" /></a></p>
<p>Quite simply with awr_snapshot_time_offset by setting it for n*300 (seconds) for every n:th database (n = 1..12).</p>
<p>The documentation of <a href="http://download.oracle.com/docs/cd/E11882_01/server.112/e25513/initparams018.htm" title="AWR_SNAPSHOT_TIME_OFFSET" target="_blank">awr_snapshot_time_offset</a> gives additional details for the parameter.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/11/awr_snapshot_time_offset_2.png"><img src="http://juliandontcheff.files.wordpress.com/2011/11/awr_snapshot_time_offset_2.png?w=604&#038;h=319" alt="" title="awr_snapshot_time_offset_2" width="604" height="319" class="aligncenter size-full wp-image-2307" /></a></p>
<p>And finally, here is how one can search for the values of certain parameters, for example Bloom filter related:</p>
<p><pre class="brush: xml; gutter: false; html-script: false; pad-line-numbers: true;">
select a.ksppinm name, b.ksppstvl value 
from x$ksppi a, x$ksppcv b 
where a.indx = b.indx 
and a.ksppinm like '%bloom%';
</pre></p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/database-tuning/'>Database tuning</a>, <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>, <a href='http://juliandontcheff.wordpress.com/category/init-ora-2/'>Init.ora</a>, <a href='http://juliandontcheff.wordpress.com/category/oracle-database/'>Oracle database</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2285/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2285/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2285/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2285&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/11/06/the-newest-init-ora-parameter-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/init_ora_parameter.png" medium="image">
			<media:title type="html">init_ora_parameter</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/awr_snapshot_time_offset.png" medium="image">
			<media:title type="html">awr_snapshot_time_offset</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/awr_cpu_spikes.png" medium="image">
			<media:title type="html">awr_cpu_spikes</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/11/awr_snapshot_time_offset_2.png" medium="image">
			<media:title type="html">awr_snapshot_time_offset_2</media:title>
		</media:content>
	</item>
		<item>
		<title>New DBA Features in Oracle Enterprise Manager Cloud Control 12c</title>
		<link>http://juliandontcheff.wordpress.com/2011/10/22/new-dba-features-in-oracle-enterprise-manager-cloud-control-12c/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/10/22/new-dba-features-in-oracle-enterprise-manager-cloud-control-12c/#comments</comments>
		<pubDate>Sat, 22 Oct 2011 07:17:03 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[Database tuning]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Grid Control]]></category>
		<category><![CDATA[Oracle database]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2208</guid>
		<description><![CDATA[During Oracle OpenWorld 2011, Oracle introduced Enterprise Manager Cloud Control 12c Release 1 (12.1.0.1). I have already done the first installation on OEL Linux 6 and I must say I am impressed with the product. Oracle Enterprise Manager Cloud Control 12c came with new features covered in 12 areas: - Framework Enhancements - Database Management [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2208&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>During Oracle OpenWorld 2011, Oracle introduced <a href="http://juliandontcheff.wordpress.com/2011/10/04/oracle-enterprise-manager-cloud-control-12c/" title=" Enterprise Manager Cloud Control 12c Release 1 (12.1.0.1)" target="_blank"> Enterprise Manager Cloud Control 12c Release 1 (12.1.0.1)</a>. I have already done the first installation on OEL Linux 6 and I must say I am impressed with the product.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_main_page.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_main_page.png?w=604&#038;h=285" alt="" title="cc12c_main_page" width="604" height="285" class="aligncenter size-full wp-image-2220" /></a></p>
<p>Oracle Enterprise Manager Cloud Control 12c came with new features covered in 12 areas:</p>
<p>- Framework Enhancements<br />
- <strong>Database Management Features</strong><br />
- Fusion Middleware Management Features<br />
- Oracle Fusion Applications Management<br />
- Application Performance Management Features<br />
- Cloud Management Features<br />
- Incident Management Features<br />
- My Oracle Support Integration<br />
- Security Features<br />
- Lifecycle Management and Provisioning Features<br />
- Extensibility Support<br />
- Coherence Management Features</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_main_page_setup.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_main_page_setup.png?w=604&#038;h=240" alt="" title="cc12c_main_page_setup" width="604" height="240" class="aligncenter size-full wp-image-2255" /></a></p>
<p>In this post, I will present the new 20 DBA features of OEM CC 12c as documented by Oracle (the screenshots in between are from my own installation):</p>
<p><strong>1. Database Creation Via Enterprise Manager Cloud Control</strong></p>
<p>A wizard allows you to create an Oracle Database from within Enterprise Manager Cloud Control. You can create different configurations, including Single Instance and Real Application Clusters (RAC) databases, as well as file system and Automatic Storage Management (ASM) storage options.</p>
<p><strong>2. Database Upgrade Via Enterprise Manager Cloud Control</strong></p>
<p>You can now upgrade Single Instance and Real Application Clusters (RAC) Oracle databases through Cloud Control. This feature makes it possible to manage upgrades from a single console. You no longer have to access each individual database machine to perform upgrades.</p>
<p><strong>3. Database Cloning Enhancements</strong></p>
<p>Cloning procedures have been enhanced to capture configuration properties as well as the software payload. This is particularly useful when migrating databases from development to test to production or the reverse. A new EMCLI verb (clone_database) allows for database cloning using the same job type as the existing Clone Database feature of Cloud Control.</p>
<p><strong>4. Oracle Exadata Server Management Enhancements</strong></p>
<p>Oracle Exadata management capabilities now provide support for full target lifecycle management:</p>
<p>- Automatically discover Exadata targets<br />
- Automatically create an Enterprise Manager System for end-to-end monitoring<br />
- Provide extensive administration capabilities for databases, Exadata cells and Infiniband switches<br />
- Simplify performance diagnostics with the help of in-depth performance charts covering all Exadata components</p>
<p><strong>5. Manage Automatic Storage Management (ASM) Clusters as a Target</strong></p>
<p>You can now manage clustered ASM resources as a single target, instead of each individual ASM instance having to be managed separately. Incident management and metric monitoring can be managed for the entire cluster.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_4.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_4.png?w=604&#038;h=367" alt="" title="CC12C_4" width="604" height="367" class="aligncenter size-full wp-image-2252" /></a></p>
<p><strong>6. Database Configuration Compliance Standards Support</strong></p>
<p>Oracle database configuration data can now be managed within the new configuration and compliance standards frameworks.</p>
<p><strong>7. Emergency Performance</strong></p>
<p>This feature allows a DBA to diagnose and troubleshoot a hung or extremely slow database using the memory access mode. This mode is designed to bypass the SQL information retrieval layer and read performance statistics directly from the SGA of the target.</p>
<p><strong>8. Database Backup and Restore Enhancements</strong></p>
<p>You can now use Enterprise Manager Cloud Control to centrally maintain the settings for Oracle database and file system backups. This enhancement enables you to apply uniform settings to multiple databases and file systems when backing up multiple objects—all in one operation. Users can perform a backup on multiple databases concurrently or sequentially in one deployment procedure. An Oracle Home OSB tape backup can be restored either to the original or to a different location, and the restored Oracle Home can be reconfigured to function in the newly restored location.</p>
<p><strong>9. Database System Discovery Enhancements</strong></p>
<p>As the database system is now built upon the new target and association model, you can use it to monitor and manage a database&#8217;s storage, connectivity, and high availability. This also enables you to easily monitor and manage the applications that are dependent on the database. The database discovery functionality is enhanced to work with the new discovery framework and to provide a reliable workflow to create a database system.</p>
<p><strong>10. Change Plans Added to Change Management Pack</strong></p>
<p>As part of the Oracle Change Management Pack, the new Change Plans function allows application developers and database administrators to encapsulate schema changes needed to be made to a database into a “change plan,” which can be used to document, capture, and apply schema changes. Change Plans are also integrated with developer and DBA tasks into SQL*Developer and Oracle Enterprise Manager task automation. This integration reduces the manual processes between the various stakeholders involved in the process of promoting planned changes across enterprise databases while ensuring the integrity of the process.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_agent_test.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_agent_test.png?w=604&#038;h=458" alt="" title="cc12c_agent_test" width="604" height="458" class="aligncenter size-full wp-image-2282" /></a></p>
<p><strong>11. Compare Period Advisor</strong></p>
<p>This feature compares the performance of a database over two different time ranges. It analyzes changes in performance, workload, configuration, and hardware to highlight changes between the two time periods. The Compare Period Advisor gives the DBA the ability to compare two arbitrary periods of time.</p>
<p><strong>12. Compare Functionality</strong></p>
<p>The Compare functionality has been enhanced with new capabilities such as template support, system level comparison, and change notification. Users can now selectively include or ignore types of differences. Output of a comparison can easily be saved and exported, both in printable (for example, plain text) and data-centric (for example, CSV) formats. Users can select comparison start and end dates and view a history of changes for composite targets.</p>
<p><strong>13. Active Reports</strong></p>
<p>A new Active Reports function allows users to save performance data into an HTML file. Once saved, the report can be used for offline analysis or sent to other users, including Oracle Support. Active Reports enhances the visual representation of performance data and facilitates the convenient exchange of complex data.</p>
<p><strong>14. Real Application Testing and Data Masking Integration</strong></p>
<p>Real Application Testing and Data Masking integration provides users with the ability to perform secure testing in situations where data in production needs to be shared by nonproduction users due to organization or business requirements. Typically testing is done in a nonproduction environment or by a different group or organization. This integration addresses a common requirement that the data used for testing be shared in a manner that adheres to data privacy and compliance regulations.</p>
<p><strong>15. Application Templates for Data Masking and Data Subsetting</strong></p>
<p>This feature provides predefined data masking and data subsetting templates for applications. It allows users to automatically create test systems based on best practices recommendations.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_configure_auto_descovery.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_configure_auto_descovery.png?w=604&#038;h=276" alt="" title="cc12c_configure_auto_descovery" width="604" height="276" class="aligncenter size-full wp-image-2249" /></a></p>
<p><strong>16. Data Subsetting</strong></p>
<p>Data subsetting provides the ability to create a smaller sized copy of the original production data that can be given to developers for testing. While it is a data subset, the referential relationships are preserved so that the data set is complete. This allows enterprises to lower storage costs while making production data available to developers for testing, without having to incur the storage footprint of the entire production database.</p>
<p><strong>17. Application Data Model Support for Data Masking</strong></p>
<p>The application data model (ADM) now stores the sensitive data elements used to generate mask definitions dynamically. Instead of having to manually discover sensitive data, the application data model identifies and stores the sensitive data elements.</p>
<p><strong>18. Reversible Data Masking</strong></p>
<p>Using encryption and decryption algorithms, reversible masking allows encryption of a user&#8217;s data deterministically into a format chosen by the user as a regular expression. Unmasking reverses the process to revert back to the original data. This feature is useful in environments where sensitive data needs to be masked and sent to a third party for processing. Coupling integrated masking with the application data model (ADM), an application&#8217;s data model is now available for certain packaged applications and can serve as a knowledge base containing sensitive column and data relationships.</p>
<p><strong>19. Performance Diagnostics Enhancements</strong></p>
<p>With the interactive user interface in the Active Session History (ASH) Viewer, users now can visualize the many performance dimensions that were not available to them in earlier releases. The Enhanced Enterprise Manager Performance and Top Activity pages allow users to visualize the multidimensional data in ASH. The ASH viewer enhances the performance troubleshooting capabilities of a DBA by providing the facility to detect skews in workload. Emergency ADDM adds performance diagnostics for databases suffering from severe performance problems.</p>
<p><strong>20. Streams and XStreams Support</strong></p>
<p>Streams and XStreams configurations can now be managed and monitored using Cloud Control. In addition to improvements in configuration and performance monitoring screens, logical change record (LCR) tracking is available for high-level diagnosis of replication issues. Cloud Control also simplifies the management and monitoring of replicated environments.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/image0440.jpg"><img src="http://juliandontcheff.files.wordpress.com/2011/10/image0440.jpg?w=604&#038;h=453" alt="" title="Image0440" width="604" height="453" class="aligncenter size-full wp-image-2246" /></a></p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/cloud/'>Cloud</a>, <a href='http://juliandontcheff.wordpress.com/category/database-tuning/'>Database tuning</a>, <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>, <a href='http://juliandontcheff.wordpress.com/category/grid-control/'>Grid Control</a>, <a href='http://juliandontcheff.wordpress.com/category/oracle-database/'>Oracle database</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2208/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2208/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2208/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2208&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/10/22/new-dba-features-in-oracle-enterprise-manager-cloud-control-12c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_main_page.png" medium="image">
			<media:title type="html">cc12c_main_page</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_main_page_setup.png" medium="image">
			<media:title type="html">cc12c_main_page_setup</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_4.png" medium="image">
			<media:title type="html">CC12C_4</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_agent_test.png" medium="image">
			<media:title type="html">cc12c_agent_test</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_configure_auto_descovery.png" medium="image">
			<media:title type="html">cc12c_configure_auto_descovery</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/image0440.jpg" medium="image">
			<media:title type="html">Image0440</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Enterprise Manager Cloud Control 12c</title>
		<link>http://juliandontcheff.wordpress.com/2011/10/04/oracle-enterprise-manager-cloud-control-12c/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/10/04/oracle-enterprise-manager-cloud-control-12c/#comments</comments>
		<pubDate>Mon, 03 Oct 2011 21:57:11 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[Cloud]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Grid Control]]></category>
		<category><![CDATA[Oracle database]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2171</guid>
		<description><![CDATA[It is now official: Oracle announced on October 3rd the new version of Enterprise Manager Cloud Control 12c Release 1 (12.1.0.1). This is the first solution in IT to combine management of the full Oracle stack with complete enterprise cloud lifecycle management. You may download it only for Linux x86-64 (64-bit). The Enterprise Manager Cloud [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2171&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is now official: Oracle announced on October 3rd the new version of Enterprise Manager Cloud Control 12c Release 1 (12.1.0.1). </p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_logo.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_logo.png?w=604" alt="" title="CC12c_logo"   class="aligncenter size-full wp-image-2180" /></a><br />
This is the first solution in IT to combine management of the full Oracle stack with complete enterprise cloud lifecycle management. </p>
<p>You may <a href="http://www.oracle.com/technetwork/oem/grid-control/downloads/index.html?ssSourceSiteId=ocomen" title="Download" target="_blank">download</a> it only for Linux x86-64 (64-bit).</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_02.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_02.png?w=604&#038;h=372" alt="" title="CC12C_02" width="604" height="372" class="aligncenter size-full wp-image-2203" /></a></p>
<p><a href="http://download.oracle.com/docs/cd/E24628_01/index.htm" title="Enterprise Manager Cloud Control Documentation" target="_blank">The Enterprise Manager Cloud Control Documentation</a> gives you the following:</p>
<p>Basic Installation Guide<br />
Advanced Installation and Configuration Guide<br />
Upgrade Guide<br />
Administrator&#8217;s Guide<br />
Cloud Administration Guide<br />
Licensing Information </p>
<p>There are 4 mandatory plug-ins that are installed by default with Enterprise Manager Cloud Control: </p>
<p>Oracle Database plug-in<br />
Oracle Fusion Middleware plug-in<br />
Oracle My Oracle Support plug-in<br />
Oracle Exadata plug-in</p>
<p>Enterprise Manager offers the following management packs for Oracle Database:</p>
<p>Diagnostics Pack for Oracle Database<br />
Tuning Pack for Oracle Database<br />
Database Lifecycle Management Pack for Oracle Database<br />
Configuration Management Pack for Oracle Database<br />
Provisioning and Patch Automation Pack for Oracle Database<br />
Change Management Pack for Oracle Database<br />
Oracle Data Masking Pack for Oracle and non-Oracle Databases<br />
Oracle Test Data Management Pack for Oracle and non-Oracle Databases</p>
<p>Top 3 new features for DBAs:</p>
<p><strong>1. Real-time ADDM.</strong> You can connect to the database and investigate what is going on when you cannot connect to the database because it is hanging on it is extremely slow. This is for real, connection to the database is in diagnostic mode, there is direct connections to the SGA.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_ash.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_ash.png?w=604&#038;h=345" alt="" title="CC12c_ASH" width="604" height="345" class="aligncenter size-full wp-image-2193" /></a></p>
<p><strong>2. Active Session History (ASH) Analytics.</strong> It is the adavnced version of Top Activity.</p>
<p>This is a snapshot from load map view mode:</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_ash3.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_ash3.png?w=604&#038;h=344" alt="" title="CC12C_ASH3" width="604" height="344" class="aligncenter size-full wp-image-2195" /></a></p>
<p><strong>3. Compare period ADDM.</strong> You can identify why during a certain period activity was slow when no changes to the SQL statements were made. Here is a snapshot from ADDM compare:</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_addm_compare.png"><img src="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_addm_compare.png?w=604&#038;h=321" alt="" title="CC12C_ADDM_COMPARE" width="604" height="321" class="aligncenter size-full wp-image-2197" /></a></p>
<p>Great product from Oracle and this is not any longer just a DBA tool. </p>
<p>From yesterday&#8217;s Total Cloud Control session: Richard Sarwal and Sushil Kumar:</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/10/image0438.jpg"><img src="http://juliandontcheff.files.wordpress.com/2011/10/image0438.jpg?w=604&#038;h=453" alt="" title="Image0438" width="604" height="453" class="aligncenter size-full wp-image-2201" /></a></p>
<p>More to follow on DBA new features in &#8220;New DBA Features in Oracle Enterprise Manager Cloud Control 12c&#8221;.</p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/cloud/'>Cloud</a>, <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>, <a href='http://juliandontcheff.wordpress.com/category/grid-control/'>Grid Control</a>, <a href='http://juliandontcheff.wordpress.com/category/oracle-database/'>Oracle database</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2171&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/10/04/oracle-enterprise-manager-cloud-control-12c/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_logo.png" medium="image">
			<media:title type="html">CC12c_logo</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_02.png" medium="image">
			<media:title type="html">CC12C_02</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_ash.png" medium="image">
			<media:title type="html">CC12c_ASH</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_ash3.png" medium="image">
			<media:title type="html">CC12C_ASH3</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/cc12c_addm_compare.png" medium="image">
			<media:title type="html">CC12C_ADDM_COMPARE</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/10/image0438.jpg" medium="image">
			<media:title type="html">Image0438</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Database 11.2.0.3 new features</title>
		<link>http://juliandontcheff.wordpress.com/2011/09/24/oracle-database-11-2-0-3-new-features/</link>
		<comments>http://juliandontcheff.wordpress.com/2011/09/24/oracle-database-11-2-0-3-new-features/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 13:16:40 +0000</pubDate>
		<dc:creator>Dontcheff</dc:creator>
				<category><![CDATA[Bugs]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[Oracle database]]></category>

		<guid isPermaLink="false">http://juliandontcheff.wordpress.com/?p=2135</guid>
		<description><![CDATA[Oracle Database 11g Release 3 (11.2.0.3) was released on the 23rd of September 2011. For now, 11.2.0.3 is available only for Linux x86 and Linux x86-64 and we have to download about 5G of data (7 files altogether). 11.2.0.3 is a full installation of the Oracle Database software meaning that you do not need to [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2135&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Oracle Database 11g Release 3 (11.2.0.3) was released on the 23rd of September 2011.</p>
<p><a href="http://juliandontcheff.files.wordpress.com/2011/09/oracle_10203.png"><img src="http://juliandontcheff.files.wordpress.com/2011/09/oracle_10203.png?w=604&#038;h=266" alt="" title="Oracle_10203" width="604" height="266" class="aligncenter size-full wp-image-2137" /></a></p>
<p>For now, 11.2.0.3 is available only for Linux x86 and Linux x86-64 and we have to <a href="https://updates.oracle.com/Orion/PatchDetails/handle_plat_lang_change?plat_lang=46P&amp;patch_file=&amp;file_id=&amp;password_required=&amp;password_required_readme=&amp;merged_trans=&amp;aru=14125325&amp;patch_num=10404530&amp;patch_num_id=1432597&amp;default_release=80112030&amp;default_plat_lang=226P&amp;default_compatible_with=&amp;patch_password=&amp;orderby=&amp;direction=&amp;no_header=0&amp;sortcolpressed=&amp;tab_number=" title="Download" target="_blank">download</a> about 5G of data (7 files altogether).</p>
<p>11.2.0.3 is a full installation of the Oracle Database software meaning that you do not need to install 11.2.0.1 before installing 11.2.0.3.</p>
<p>According to the <a href="https://updates.oracle.com/Orion/PatchDetails/view_readme?plat_lang=226P&amp;patch_file=&amp;file_id=&amp;password_required=&amp;password_required_readme=&amp;merged_trans=&amp;aru=14125322&amp;patch_num=10404530&amp;patch_num_id=1432597&amp;default_release=80112030&amp;default_plat_lang=226P&amp;default_compatible_with=&amp;patch_password=&amp;orderby=&amp;direction=&amp;no_header=0&amp;sortcolpressed=&amp;tab_number=" title="ReadMe for 10404530" target="_blank">ReadMe for 10404530</a>, the list of bugs fixed for Oracle Database 11g Release 2 (11.2.0.3) is in document 1348303.1: List of Bug Fixes by Problem Type available on the My Oracle Support Web site. <a href="https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&amp;id=()),(page=KBNavigator&amp;id=(bmDocType=PATCH&amp;bmDocTitle=11.2.0.3%20Patch%20Set%20-%20List%20of%20Bug%20Fixes%20by%20Problem%20Type&amp;bmDocID=1348303.1&amp;bmDocDsrc=KB&amp;viewingMode=1143&amp;from=BOOKMARK))" title="Bugs fixed in the 11.2.0.3 Patch Set" target="_blank">Check it out please.</a> It is not a short one. Not at all.</p>
<p>The complete list of new features of 11.2.0.3 can be found <a href="http://download.oracle.com/docs/cd/E11882_01/server.112/e22487/chapter1_11203.htm" title="Oracle Database 11g Release 2 (11.2.0.3) New Features" target="_blank">here</a>. They are by far much less than the new features of 11.2.0.2, here is a summery of these new features:</p>
<p> Oracle ACFS Snapshot Enhancements<br />
 Oracle ACFS Security and Encryption Features<br />
 Support for ACFS Replication and Tagging on Windows<br />
 Oracle LogMiner Support for Binary XML<br />
 SQL Apply Support for Binary XML<br />
 Oracle LogMiner Support for Object Relational Model<br />
 SQL Apply Support for Object Relational Model<br />
 Deprecation of Obsolete Oracle XML DB Functions and Packages<br />
 Oracle Warehouse Builder Support for Partition DML<br />
 Enhanced Partitioning Support in Oracle Warehouse Builder<br />
 Oracle Warehouse Builder External Table Data Pump Support<br />
 Oracle Warehouse Builder External Table Preprocessor Support<br />
 Compressed Table and Partition Support in Oracle Warehouse Builder<br />
 Support for PL/SQL Native Compilation</p>
<p>Starting with Oracle Database 11g Release 2 (11.2.0.3) you can enter the Proxy Realm information when providing the details for downloading software updates. The proxy realm identifies the security database used for authentication. If you do not have a proxy realm, then you do not have to provide an entry for the Proxy Username, Proxy Password, and Proxy Realm fields. It is case-sensitive.</p>
<p>The following initialization parameter is new to Oracle Database 11g Release 2 (11.2.0.3): AWR_SNAPSHOT_TIME_OFFSET </p>
<p>Starting with Oracle Database 11g Release 3 (11.2.0.3), Oracle Universal Installer displays a new screen, Grid Installation Options, which helps in the installation of the examples software on an Oracle RAC database. The examples software is installed in the selected Oracle RAC home on all the nodes where it exists.</p>
<p>Nothing impressive but with a new patchset we do not actually expect new features, rather we hope that all (did I just say all) old bugs have been somehow fixed. </p>
<p>Unfortunately, I am waiting for the accessibility of document 1348303.1: List of Bug Fixes by Problem Type.</p>
<p>Exadata does not currently support Database 11.2.0.3.</p>
<p>When downgrading from release 11.2.0.3 to 11.2.0.2, the following error is raised when you run @catdwgrd.sql (reference Bug 11811073): ORA-20000: Upgrade from version 11.2.0.2.0 cannot be downgraded to version.</p>
<p>Data Pump Export operations do not work if the DMSYS schema is not removed as part of the upgrade to release 11.2.0.3 (reference Bug 10007411). </p>
<p>Oracle Database release 11.2.0.1 or 11.2.0.2 upgrade to Oracle Clusterware release 11.2.0.3 is not supported if the 11.2.0.1 or 11.2.0.2 release of Oracle Grid Infrastructure for a cluster is installed in a non-shared Oracle home and the 11.2.0.3 release of Oracle Grid Infrastructure for a cluster is installed in a shared Oracle home (reference Bug 10074804).</p>
<p>Starting with release 11.2.0.3 of Oracle Database, the Data Mining Java API is deprecated.</p>
<p>Starting in release 11.2.0.3, configuring HTTPS with Oracle XML DB requires that you first set up SSL_CIPHER_SUITES to include SSL_DH_anon (reference Bug 8403366). </p>
<p>After upgrading from 11.2.0.1 or 11.2.0.2 to 11.2.0.3, deinstallation of the Oracle home in the previous version may result in the deletion of the old Oracle base that was associated with it. This may also result in the deletion of data files, audit files, etc., that are stored under the old Oracle base.</p>
<p>Database links imported from an 11.2.0.3 database into a version prior to 11.2.0.3 (including 11.2.0.2) will not be usable in the import database. Any attempt to use a database link will cause the following ORA-600 error: ORA-00600 [kzdlk_zt2 err], [18446744073709551601]</p>
<p>For features not available or restricted in 11.2.0.3, click <a href="http://download.oracle.com/docs/cd/E11882_01/readmes.112/e22488/toc.htm#BABDGGDB" title="Features Not Available or Restricted in 11.2.0.3" target="_blank">here</a>.</p>
<p>For a complete list of all possible bugs and issues, check on the <a href="http://download.oracle.com/docs/cd/E11882_01/readmes.112/e22488/toc.htm#BABJCBCA" title="Open Bugs" target="_blank">Open Bugs</a>.</p>
<p>11.2.0.3 was called <a href="http://download.oracle.com/docs/cd/E11882_01/relnotes.112/e23558/toc.htm#autoId43" title="Oracle Database 11g Release 3" target="_blank">Oracle Database 11g Release 3</a> for a short period of time but Oracle fixed the documentation.</p>
<br />Filed under: <a href='http://juliandontcheff.wordpress.com/category/bugs/'>Bugs</a>, <a href='http://juliandontcheff.wordpress.com/category/dba/'>DBA</a>, <a href='http://juliandontcheff.wordpress.com/category/oracle-database/'>Oracle database</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/juliandontcheff.wordpress.com/2135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/juliandontcheff.wordpress.com/2135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/juliandontcheff.wordpress.com/2135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/juliandontcheff.wordpress.com/2135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/juliandontcheff.wordpress.com/2135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/juliandontcheff.wordpress.com/2135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/juliandontcheff.wordpress.com/2135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/juliandontcheff.wordpress.com/2135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=juliandontcheff.wordpress.com&amp;blog=14794807&amp;post=2135&amp;subd=juliandontcheff&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://juliandontcheff.wordpress.com/2011/09/24/oracle-database-11-2-0-3-new-features/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ea2bbfc2267c8f3f03983515723c1d9e?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">dontcheff</media:title>
		</media:content>

		<media:content url="http://juliandontcheff.files.wordpress.com/2011/09/oracle_10203.png" medium="image">
			<media:title type="html">Oracle_10203</media:title>
		</media:content>
	</item>
	</channel>
</rss>
