<?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>uCertify Articles &#187; OCP DBA 9i</title>
	<atom:link href="http://www.ucertify.com/article/certifications/ocp-dba9i/feed" rel="self" type="application/rss+xml" />
	<link>http://www.ucertify.com/article</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 04 Nov 2009 00:00:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Materialized views</title>
		<link>http://www.ucertify.com/article/how-are-materialized-views-managed-3.html</link>
		<comments>http://www.ucertify.com/article/how-are-materialized-views-managed-3.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-033]]></category>

		<guid isPermaLink="false">2201107</guid>
		<description><![CDATA[Materialized views can be created either through the CREATE MATERIALIZED VIEW statement or the Oracle Enterprise Manager (OEM). The CREATE MATERIALIZED VIEW statement can also be used for populating the materialized views. A materialized view can be deriv]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fhow-are-materialized-views-managed-3.html&amp;t=Materialized+views&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fhow-are-materialized-views-managed-3.html&amp;title=Materialized+views&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fhow-are-materialized-views-managed-3.html&amp;title=Materialized+views&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Materialized+views;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fhow-are-materialized-views-managed-3.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Materialized views can be created either through the CREATE MATERIALIZED VIEW statement or the Oracle Enterprise Manager (OEM). The CREATE MATERIALIZED VIEW statement can also be used for populating the materialized views. A materialized view can be derived from an existing user-defined materialized view. In this case, the ON PREBUILT TABLE clause of the CREATE MATERIALIZED VIEW is used. However, if a user-defined materialized view does not exist, a materialized view can be populated by using either the BUILD IMMEDIATE or BUILD DEFERRED clause of the CREATE MATERIALIZED VIEW statement, depending upon whether the materialized view has to be populated immediately or at some later time, respectively. However, the BUILD DEFERRED materialized view cannot be used until a refresh is performed on it. As soon as the first refresh is performed on the BUILD DEFERRED materialized view, it is enabled, provided the ENABLE QUERY REWRITE clause is specified.</p>
<p>Materialized views are used for query rewrites in expensive data warehouse environments, where the queries are complicated and involve multiple joins. However, materialized views cannot use the query rewrite feature by themselves unless the QUERY_REWRITE_ENABLED initialization parameter is set to TRUE and the ENABLE QUERY REWRITE clause is specified at the time of creation of the materialized view that has to be made available for query rewrites. If the above clause was not specified, or the DISABLE QUERY REWRITE clause was used instead at the time of creation of the materialized view, then the query rewrite feature for the materialized view can be enabled using the ALTER MATERIALIZED VIEW statement.</p>
<p>Materialized views are refreshed to synchronize the data in the master site of the materialized view and the materialized view itself. Materialized views can be refreshed one at a time or in bulk by using refresh groups. Materialized views can be refreshed either on demand (the ON DEMAND mode of refreshing) or each time a transaction that brought some changes in the base tables of the materialized view, commits (the ON COMMIT mode of refreshing). The ON DEMAND mode has two modes under it &#8211; the manual complete mode and the manual force mode. The manual complete mode refreshes the underlying materialized view by recalculating the defining query of the associated materialized view. Manual force mode attempts to perform a fast refresh of the materialized view. If it cannot perform a fast refresh, it does a complete refresh instead. A user can also specify which type of refresh is to be performed on the materialized view. The following refresh options are available:
<ul>
<li> Complete </li>
<li> Fast </li>
<li> Force </li>
<li> Never </li>
</ul>
<p> Complete  &#8211; In this case, the materialized view is refreshed by executing the defining query of the materialized view. This replaces the data in the materialized view by the result set of the query. If a complete refresh is performed on the master materialized view, then a complete refresh should be performed on each materialized view associated with the above master view. If this is not done, then Oracle returns an error.</p>
<p> Fast  &#8211; In this case, the materialized view logs, a SQL*Loader direct path, or a partition maintenance operation are used to update the rows that have changed since the last refresh operation. Hence, this refreshing option is incremental rather than total.</p>
<p> Force  &#8211; In this case, the first attempt to refresh a materialized view is made through a fast refresh. However, if this refresh option fails, then a complete refresh is performed on the materialized view.</p>
<p> Never  &#8211; In this case, the specified materialized view is never refreshed by Oracle.</p>
<p>There are three components of the frequency to refresh the materialized views, which are as follows:</p>
<ol>
<li>Build type (immediate/deferred)</li>
<li> Refresh options (fast/force)</li>
<li>Frequency (manual/on commit)</li>
</ol>
<p> The three types of materialized views as follows:</p>
<p> Read only </p>
<ul>
<li>It cannot be updated. </li>
<li> Complex materialized views support the read only component of the frequency.</li>
</ul>
<p>Updateable</p>
<ul>
<li>It can be updated even when disconnected from the master site.</li>
<li>It is refreshed on demand.</li>
<li>It consumes fewer resources.</li>
<li>It requires Advanced Replication option to be installed.</li>
</ul>
<p>Writeable</p>
<ul>
<li>It is created with the for update clause.</li>
<li>All the changes are lost when the view is refreshed.</li>
<li>It requires Advanced Replication option to be installed.</li>
</ul>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle OCP DBA 9i</a> exam.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Become <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >Oracle Oracle9i DB: Performance Tuning</a> certified.</span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fhow-are-materialized-views-managed-3.html&amp;linkname=Materialized%20views"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/how-are-materialized-views-managed-3.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a log switch?</title>
		<link>http://www.ucertify.com/article/what-is-a-log-switch.html</link>
		<comments>http://www.ucertify.com/article/what-is-a-log-switch.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCA DBA 9i]]></category>
		<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-031]]></category>

		<guid isPermaLink="false">1801112</guid>
		<description><![CDATA[A log switch occurs when the log writer (LGWR) finishes writing redo entries to the current online redo log file group and starts writing to the next online redo log file group. By default, a log switch occurs automatically when the current online redo lo]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com<span style='border:1px solid #ccc;background-color:#eff3ef;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i.html" >oca-dba9i</a> for exam.</span>
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-log-switch.html&amp;t=What+is+a+log+switch%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-log-switch.html&amp;title=What+is+a+log+switch%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-log-switch.html&amp;title=What+is+a+log+switch%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+a+log+switch%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-log-switch.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>A log switch occurs when the log writer (LGWR) finishes writing redo entries to the current online redo log file group and starts writing to the next online redo log file group. By default, a log switch occurs automatically when the current online redo log file group is full. A log switch can also be forced by executing the ALTER SYSTEM SWITCH LOGFILE; statement, regardless of whether or not the current online redo log file group is full.</p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle OCP DBA 9i</a> certified.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-031.html" >Oracle9i Database: Fundamentals I</a> in first attampt.</span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-log-switch.html&amp;linkname=What%20is%20a%20log%20switch%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-is-a-log-switch.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a resource consumer group?</title>
		<link>http://www.ucertify.com/article/what-is-a-resource-consumer-group.html</link>
		<comments>http://www.ucertify.com/article/what-is-a-resource-consumer-group.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 10g]]></category>
		<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[Oracle Certified Master 10g]]></category>
		<category><![CDATA[RAC Certified Expert 10g]]></category>
		<category><![CDATA[1Z0-033]]></category>
		<category><![CDATA[1Z0-043]]></category>
		<category><![CDATA[1Z0-045]]></category>
		<category><![CDATA[1Z0-053]]></category>

		<guid isPermaLink="false">2201072</guid>
		<description><![CDATA[A resource consumer group is a logical grouping of user sessions on the basis of the resource requirements of each user session. Hence, there can be more than one resource consumer group with each having different resource requirements. Every user session]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-resource-consumer-group.html&amp;t=What+is+a+resource+consumer+group%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-resource-consumer-group.html&amp;title=What+is+a+resource+consumer+group%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-resource-consumer-group.html&amp;title=What+is+a+resource+consumer+group%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+a+resource+consumer+group%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-resource-consumer-group.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>A resource consumer group is a logical grouping of user sessions on the basis of the resource requirements of each user session. Hence, there can be more than one resource consumer group with each having different resource requirements. Every user session can only belong to a single resource consumer group at an instance. At times, the resource requirement of a session is not met by the resource consumer group to which it belongs. In such cases, the session can automatically switch to a different resource consumer group depending on administrator settings. </p>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >OCP DBA 10g</a> in first attampt.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >OCP DBA 9i</a> in first attampt.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocm-10g.html" >Oracle Certified Master 10g</a> in first attampt.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >Oracle RAC Certified Expert 10g</a> certified.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >Oracle9i DB: Performance Tuning</a> in first attampt.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-043.html" >Oracle Database 10g: Admin - II</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-045.html" >1Z0-045  OCA, 10g New Feature for Oracle 8i Ocp</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-053.html" >Oracle OCP: Oracle Database 11g: Administration II</a> exam.</ul><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-a-resource-consumer-group.html&amp;linkname=What%20is%20a%20resource%20consumer%20group%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-is-a-resource-consumer-group.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What are latches?</title>
		<link>http://www.ucertify.com/article/what-are-latches.html</link>
		<comments>http://www.ucertify.com/article/what-are-latches.html#comments</comments>
		<pubDate>Sat, 31 Oct 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-033]]></category>

		<guid isPermaLink="false">2201057</guid>
		<description><![CDATA[Latches are data structures used for protecting memory structures that are needed for a short period of time, e.g., the least recently used (LRU) list. Request for latches are not queued for execution. Following are the two modes of latches: 
 Willing-to-]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-are-latches.html&amp;t=What+are+latches%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-are-latches.html&amp;title=What+are+latches%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-are-latches.html&amp;title=What+are+latches%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+are+latches%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-are-latches.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Latches are data structures used for protecting memory structures that are needed for a short period of time, e.g., the least recently used (LRU) list. Request for latches are not queued for execution. Following are the two modes of latches: </p>
<ul>
<li> Willing-to-wait mode </li>
<li> Immediate mode </li>
</ul>
<p>If a process requests a latch in the willing-to-wait mode and the latch is not immediately available, then the process  waits for the latch. However, if the process requests for a latch in the immediate mode and the latch is not immediately available, then the process continues with its processing. </p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle OCP DBA 9i</a> certified.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" > Pass Oracle 1Z0-033 - Oracle9i DB: Performance Tuning</a></span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-are-latches.html&amp;linkname=What%20are%20latches%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-are-latches.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OCP 1z0-047 Short Notes: Exam passing tips</title>
		<link>http://www.ucertify.com/article/ocp-1z0-047-short-notes-exam-passing-tips-2.html</link>
		<comments>http://www.ucertify.com/article/ocp-1z0-047-short-notes-exam-passing-tips-2.html#comments</comments>
		<pubDate>Sat, 03 Oct 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCA DBA 10g]]></category>
		<category><![CDATA[OCA DBA 11g]]></category>
		<category><![CDATA[OCA DBA 9i]]></category>
		<category><![CDATA[OCA PL/SQL Developer]]></category>
		<category><![CDATA[OCP DBA 10g]]></category>
		<category><![CDATA[OCP DBA 11g]]></category>
		<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[OCP PL/SQL Developer]]></category>
		<category><![CDATA[Oracle Certified Master 10g]]></category>
		<category><![CDATA[Oracle PL/SQL Developer]]></category>
		<category><![CDATA[Performance Tuning Expert 11g]]></category>
		<category><![CDATA[RAC Certified Expert 10g]]></category>
		<category><![CDATA[SQL Certified Expert 10g]]></category>
		<category><![CDATA[SQL Certified Expert 11g]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>

		<guid isPermaLink="false">3701677</guid>
		<description><![CDATA[Retrieving data using the SQL SELECT statement and using single row functions to customize the output/*...*/ and -- are used to put comments in an Oracle program.
The CREATE TABLE does not end immediately with a semicolon, and a column name cannot start w]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Focp-1z0-047-short-notes-exam-passing-tips-2.html&amp;t=OCP+1z0-047+Short+Notes%3A+Exam+passing+tips&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Focp-1z0-047-short-notes-exam-passing-tips-2.html&amp;title=OCP+1z0-047+Short+Notes%3A+Exam+passing+tips&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Focp-1z0-047-short-notes-exam-passing-tips-2.html&amp;title=OCP+1z0-047+Short+Notes%3A+Exam+passing+tips&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=OCP+1z0-047+Short+Notes%3A+Exam+passing+tips;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Focp-1z0-047-short-notes-exam-passing-tips-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p><uc:hed>Retrieving data using the SQL SELECT statement and using single row functions to customize the output</uc:hed>
<ul>
<li>/*&#8230;*/ and &#8212; are used to put comments in an Oracle program.</li>
<p></p>
<li>The CREATE TABLE does not end immediately with a semicolon, and a column name cannot start with a numeric value. However, a numeric value can be used in between a column name.</li>
<p></p>
<li>Name of a table cannot start with @ special character.</li>
<p></p>
<li>Knowing about the GROUP BY clause.</li>
</ul>
<p><uc:hed>Using sub queries and set operators to solve queries, as well as DDL statements to create and manage tables</uc:hed></p>
<ul>
<li>+ (unary), &#8211; (unary), *, /, ||, =, !=, &lt;, &gt;, &lt;=, &gt;=, IS NULL, LIKE, BETWEEN, IN, NOT, AND, OR is the correct order of operators precedence.</li>
<p></p>
<li>The ROLLBACK command is used to end the current transaction, and discard any changes made since the beginning of the transaction.</li>
</ul>
<p><uc:hed>Managing objects with data dictionary views, schema objects and data in different time zones</uc:hed>
<ul>
<li>The length of a column can be increased even if it contains data. However, the data type of the column cannot be modified if it contains any data.</li>
<p></p>
<li>The parameters used to maximize the space in Flash Recovery Area.</li>
<p></p>
<li>User error failure refers to a database failure that results due to certain transactions on a database by a user.</li>
<p></p>
<li>Flashback Query is used to view and repair historical data, and to view the contents of a table at any specific point in time.</li>
<p></p>
<li>UNDO_RETENTION is a parameter in the init.ora initialization parameters file that specifies the time period in seconds for which a system retains undo data for committed transactions.</li>
<p></p>
<li>Once the Flashback Versions Query is run to diagnose the erroneous transaction, the Flashback Transaction Query helps in the repair process of the transaction. </li>
<p></p>
<li>The correct order of steps that will enable the flashback database are as follows:
<ol>
<li>Put the database in Archive log mode.</li>
<li>Set up a flash recovery area.</li>
<li>Set the period for the flashback retention target.</li>
<li>Shut down and mount the database.</li>
<li>Enable flashback logging.</li>
<li>Open the database.</li>
</ol>
</li>
<li>The overall utilization of the flash recovery area is displayed in megabytes.</li>
<p></p>
<li>SQL statement can be used to flashback a database.</li>
<p></p>
<li>Take the following steps to enable the Flashback Database:
<ol>
<li>Ensure that the database is in Archive Log mode.</li>
<p></p>
<li>Setup a flash recovery area.</li>
<p></p>
<li>Set the duration for the flashback retention target.</li>
<p></p>
<li>Shutdown the database.</li>
<p></p>
<li>Mount the database.</li>
<p></p>
<li>Enable flashback logging.</li>
<p></p>
<li>Open the database.</li>
</ol>
</li>
<li>The dropped table can be recovered by using Flashback Drop.</li>
<p></p>
<li>The flashback database is enabled only in Archive log mode, as it recovers the database to an earlier specific point of time.</li>
<p></p>
<li>Flashback Database is used to reverse the changes made to a table.</li>
<p></p>
<li>The Perform Recovery: Review screen is used to display the RMAN script that performs the Flashback Database recovery.</li>
<p></p>
<li>The portlist.ini file is used to get all the port numbers of the HTTP listeners.</li>
<p></p>
<li>RVWR is a background process, which is a part of the Flashback Database Architecture.</li>
<p></p>
<li>LGWR is a background process that is a part of Flashback Database Architecture.</li>
<p></p>
<li>SELECT oldest_flashback_scn FROM V; is used to retrieve an approximate system change number (SCN) to which a database can be flashed back.</li>
</ul>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >Oracle OCA DBA 10g</a> certified.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >Oracle OCA DBA 11g</a> exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i.html" >oca-dba9i OCA DBA 9i</a> exam practice questions.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql</a> test study guide and practice question.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >Oracle OCP DBA 10g</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >Oracle OCP DBA 11g</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >OCP DBA 9i</a> in first attampt.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/ocp-pl-sql.html" >ocp-pl-sql</a> for exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocm-10g.html" >Oracle Certified Master 10g</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >oracle-pl-sql  Oracle PL/SQL Developer</a> exam.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/performance-tuning-certified-expert-11g.html" >Oracle performance-tuning-certified-expert-11g</a> download free trial.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >rac-administrator-certified-experts-10g</a> for exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-10g.html" >sql-certified-expert-10g  SQL Certified Expert 10g</a> exam.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-11g.html" > Pass Oracle sql-certified-expert-11g - SQL Certified Expert 11g</a><li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-047.html" >1Z0-047  Oracle Database SQL Expert</a> exam.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/exams/Oracle/1Z0-051.html" >1Z0-051</a> test study guide and practice question.</ul><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Focp-1z0-047-short-notes-exam-passing-tips-2.html&amp;linkname=OCP%201z0-047%20Short%20Notes%3A%20Exam%20passing%20tips"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/ocp-1z0-047-short-notes-exam-passing-tips-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is the REMOTE_OS_AUTHENT parameter?</title>
		<link>http://www.ucertify.com/article/what-is-the-remote_os_authent-parameter-2.html</link>
		<comments>http://www.ucertify.com/article/what-is-the-remote_os_authent-parameter-2.html#comments</comments>
		<pubDate>Wed, 30 Sep 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCA DBA 10g]]></category>
		<category><![CDATA[OCA DBA 11g]]></category>
		<category><![CDATA[OCA DBA 9i]]></category>
		<category><![CDATA[OCA PL/SQL Developer]]></category>
		<category><![CDATA[OCP DBA 10g]]></category>
		<category><![CDATA[OCP DBA 11g]]></category>
		<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[OCP PL/SQL Developer]]></category>
		<category><![CDATA[Oracle Certified Master 10g]]></category>
		<category><![CDATA[Oracle PL/SQL Developer]]></category>
		<category><![CDATA[Performance Tuning Expert 11g]]></category>
		<category><![CDATA[RAC Certified Expert 10g]]></category>
		<category><![CDATA[SQL Certified Expert 10g]]></category>
		<category><![CDATA[SQL Certified Expert 11g]]></category>
		<category><![CDATA[1Z0-042]]></category>
		<category><![CDATA[1Z0-047]]></category>

		<guid isPermaLink="false">3701252</guid>
		<description><![CDATA[The REMOTE_OS_AUTHENT parameter in the parameter file of the database specifies whether remote clients will be authenticated  with the value of the OS_AUTHENT_PREFIX parameter or not. The type of the REMOTE_OS_AUTHENT parameter is Boolean, the default val]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-the-remote_os_authent-parameter-2.html&amp;t=What+is+the+REMOTE_OS_AUTHENT+parameter%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-the-remote_os_authent-parameter-2.html&amp;title=What+is+the+REMOTE_OS_AUTHENT+parameter%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-the-remote_os_authent-parameter-2.html&amp;title=What+is+the+REMOTE_OS_AUTHENT+parameter%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+the+REMOTE_OS_AUTHENT+parameter%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-the-remote_os_authent-parameter-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The REMOTE_OS_AUTHENT parameter in the parameter file of the database specifies whether remote clients will be authenticated  with the value of the OS_AUTHENT_PREFIX parameter or not. The type of the REMOTE_OS_AUTHENT parameter is Boolean, the default value is false, and the parameter class is static. The REMOTE_OS_AUTHENT parameter is case sensitive on some operating systems. The flow diagram below may help a user understand the role of the REMOTE_OS_AUTHENT parameter for a remote database:</p>
<p><img src='i3701252.gif' /> </p>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >oca-dba10g - OCA DBA 10g</a> simulation.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >Oracle OCA DBA 11g</a> certified.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i.html" >Oracle OCA DBA 9i</a> certified.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql</a> test study guide and practice question.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" > Pass Oracle ocp-dba10g - OCP DBA 10g</a><li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" > Pass Oracle ocp-dba-11g - OCP DBA 11g</a><li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle ocp-dba9i</a> download free trial.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-pl-sql.html" >OCP PL/SQL Developer</a> in first attampt.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocm-10g.html" >Oracle Oracle Certified Master 10g</a> certified.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >oracle-pl-sql Oracle PL/SQL Developer</a> exam practice questions.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/performance-tuning-certified-expert-11g.html" >performance-tuning-certified-expert-11g  Performance Tuning Expert 11g</a> exam.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >Oracle RAC Certified Expert 10g</a> certified.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-10g.html" >sql-certified-expert-10g</a> test study guide and practice question.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-11g.html" >SQL Certified Expert 11g</a> in first attampt.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-042.html" >1Z0-042</a> for exam.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/exams/Oracle/1Z0-047.html" >Oracle 1Z0-047</a> download free trial.</ul><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-the-remote_os_authent-parameter-2.html&amp;linkname=What%20is%20the%20REMOTE_OS_AUTHENT%20parameter%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-is-the-remote_os_authent-parameter-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Study tips for Oracle test O1Z0-033.</title>
		<link>http://www.ucertify.com/article/study-tips-for-oracle-test-o1z0-033-2.html</link>
		<comments>http://www.ucertify.com/article/study-tips-for-oracle-test-o1z0-033-2.html#comments</comments>
		<pubDate>Thu, 10 Sep 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-033]]></category>

		<guid isPermaLink="false">2201117</guid>
		<description><![CDATA[The objective of this test is to test the analytical skills of the user as a Database Administrator, using Oracle9i as the back-end tool. The test requires a thorough grasp of database concepts, familiarity with the GUI tools, scripts, views, and packages]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fstudy-tips-for-oracle-test-o1z0-033-2.html&amp;t=Study+tips+for+Oracle+test+O1Z0-033.&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fstudy-tips-for-oracle-test-o1z0-033-2.html&amp;title=Study+tips+for+Oracle+test+O1Z0-033.&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fstudy-tips-for-oracle-test-o1z0-033-2.html&amp;title=Study+tips+for+Oracle+test+O1Z0-033.&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=Study+tips+for+Oracle+test+O1Z0-033.;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fstudy-tips-for-oracle-test-o1z0-033-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The objective of this test is to test the analytical skills of the user as a Database Administrator, using Oracle9i as the back-end tool. The test requires a thorough grasp of database concepts, familiarity with the GUI tools, scripts, views, and packages available in Oracle9i. This includes being able to identify the potential tuning areas with the help of the available tools and packages. The user should be able to analyze which tool or package should be used in which case. This requires a lot of practice with the tools and packages. The user should also be able to use PL/SQL-based queries for identifying potential bottlenecks in the performance of the system.</p>
<p>The user of this PrepKit is required to first brush up his fundamental knowledge in database. This includes getting acquainted with the key terms that appear in the test structure. He should know the function of each and every term that appears in the test structure of this test. For this purpose, this PrepKit comes in handy, as it explains in detail, the functionality of the key terms used in this test. The facts made for this PrepKit are so made that they not only mould the basic concepts, but also help in further solving the tricky questions that are asked in the test. The user of this PrepKit can always find the relevant details on a topic by following the links that are given at suitable points in the questionnaire prepared for this test. The questions are also prepared in a manner that they are tougher than those asked in the real test. This would help the user of this PrepKit to take the test with ease and confidence. This is done keeping in mind that if you have to hit the bulls eye, you&#8217;ll have to aim a bit higher.</p>
<p>The questions asked in this PrepKit are mostly scenario-based, which will present to the user of this PrepKit with the problems faced by a database administrator in the real world.</p>
<p>The user is urged to take the diagnostic tests only after clearing his fundamentals and in no case before that. This will enable him to test the depth of his fundamentals and get an idea about the types of questions asked in the test.</p>
<p>After clearing his basics, the user should try to get familiar with the tools and packages available in Oracle9i and try to resolve the issues using them. He should then switch onto using the query-based approach, using PL/SQL statements, for identifying and resolving the tuning issues. Although the queries are not a frequent part of the real test, this will enable a user to solve such questions with confidence as this part is the least prepared by most of the candidates who take this test. Also, queries form an integral part of an administrator&#8217;s arsenal, and therefore, brushing up his skills with queries will help him in his future prospect as a database administrator of a company.</p>
<p>Although this PrepKit has been prepared as per the latest requirements of the test, the user is yet urged to check the requirements of the test, well in advance, before taking the test.</p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i</a> for exam.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Best exam simulation <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >Oracle 1Z0-033</a> download free trial.</span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fstudy-tips-for-oracle-test-o1z0-033-2.html&amp;linkname=Study%20tips%20for%20Oracle%20test%20O1Z0-033."><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/study-tips-for-oracle-test-o1z0-033-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is  ONLINE  option?</title>
		<link>http://www.ucertify.com/article/what-is-online-option-2.html</link>
		<comments>http://www.ucertify.com/article/what-is-online-option-2.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-033]]></category>

		<guid isPermaLink="false">2201056</guid>
		<description><![CDATA[ONLINE is an option of the ALTER INDEX REBUILD statement, which  is used to minimize locking contentions that may arise at the time of rebuilding an index. Locking contentions generally arise when several operations are being simultaneously performed with]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-online-option-2.html&amp;t=What+is++ONLINE++option%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-online-option-2.html&amp;title=What+is++ONLINE++option%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-online-option-2.html&amp;title=What+is++ONLINE++option%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is++ONLINE++option%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-online-option-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>ONLINE is an option of the ALTER INDEX REBUILD statement, which  is used to minimize locking contentions that may arise at the time of rebuilding an index. Locking contentions generally arise when several operations are being simultaneously performed with the index rebuilding operation, on a table corresponding to the index. </p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i - OCP DBA 9i</a> simulation.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Click here to get free <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >1Z0-033 Oracle9i DB: Performance Tuning</a> exam practice questions.</span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-online-option-2.html&amp;linkname=What%20is%20%20ONLINE%20%20option%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-is-online-option-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is an active session pool?</title>
		<link>http://www.ucertify.com/article/what-is-an-active-session-pool-2.html</link>
		<comments>http://www.ucertify.com/article/what-is-an-active-session-pool-2.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-033]]></category>

		<guid isPermaLink="false">2201074</guid>
		<description><![CDATA[An active session pool is a feature that allows a user to control the maximum number of active sessions permissible within a resource consumer group. As more active sessions are created within a resource consumer group, the resource consumption increases ]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-an-active-session-pool-2.html&amp;t=What+is+an+active+session+pool%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-an-active-session-pool-2.html&amp;title=What+is+an+active+session+pool%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-an-active-session-pool-2.html&amp;title=What+is+an+active+session+pool%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+an+active+session+pool%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-an-active-session-pool-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>An active session pool is a feature that allows a user to control the maximum number of active sessions permissible within a resource consumer group. As more active sessions are created within a resource consumer group, the resource consumption increases accordingly. This may lead to a situation where a single resource consumer group is engaging the entire available resources, whereas other groups are starving. To avoid this situation, the active session pool queues the active sessions that are created beyond the permissible limit, without actually executing them. A queued active session is executed only after an existing active session ends. The active session pool follows the first-in-first-out queuing principle. There is only one active session pool for each resource consumer group.</p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle OCP DBA 9i</a> certified.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >1Z0-033</a> for exam.</span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-an-active-session-pool-2.html&amp;linkname=What%20is%20an%20active%20session%20pool%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-is-an-active-session-pool-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is direct path loading?</title>
		<link>http://www.ucertify.com/article/what-is-direct-path-loading-2.html</link>
		<comments>http://www.ucertify.com/article/what-is-direct-path-loading-2.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCP DBA 9i]]></category>
		<category><![CDATA[1Z0-033]]></category>

		<guid isPermaLink="false">2201078</guid>
		<description><![CDATA[Direct path loading is a method of data loading where the direct path application program interface (API) passes the data to be loaded to the load engine on the server. The load engine builds a column array from the data. It then uses the array structure ]]></description>
			<content:encoded><![CDATA[<!-- This is a HTML comment, it will not display in any page. Feel free to remove this comment if it cause any inconvenient to you.
	Thanks for using digg digg, please visit http://www.mkyong.com/blog/digg-digg-wordpress-plugin for any comments and ideas, 
	
    Author : Yong Mook Kim
    Website : http://www.mkyong.com
	--><div><table> <td><iframe src='http://digg.com/api/diggthis.php?w=new&amp;u=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-direct-path-loading-2.html&amp;t=What+is+direct+path+loading%3F&amp;s=compact' height='18' width='120' frameborder='0' scrolling='no'></iframe></td> <td><iframe src='http://www.reddit.com/button_content?newwindow=1&amp;url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-direct-path-loading-2.html&amp;title=What+is+direct+path+loading%3F&amp;t=1 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><iframe src='http://widgets.dzone.com/links/widgets/zoneit.html?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-direct-path-loading-2.html&amp;title=What+is+direct+path+loading%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+direct+path+loading%3F;//--></script><script type="text/javascript" src="http://d.yimg.com/ds/badge2.js" badgetype=small-votes></script></td> <td><iframe src='http://api.tweetmeme.com/button.js?url=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-direct-path-loading-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Direct path loading is a method of data loading where the direct path application program interface (API) passes the data to be loaded to the load engine on the server. The load engine builds a column array from the data. It then uses the array structure to format data blocks and build index keys. The data blocks so formatted are written directly to the database. In direct path loading, data conversion occurs on the client side rather than on the server side. Direct path loading is generally faster than conventional loading because of the following reasons:
<ul>
<li> Contention with other users is minimized because the processes perform their own I/O instead of using the buffer cache.</li>
<li> Direct path loading employs multiblock asynchronous I/O for writing to the datafiles. </li>
<li> Partial blocks are not employed by direct path loading. Hence, there is no overhead of finding them.</li>
</ul>
<p> Direct path loading is generally used when the data to be loaded is quite large or the data is to be loaded in parallel for enhanced performance. Integrity constraints are employed in direct path loading, e.g., the NOT NULL constraint. Integrity constraints depending upon other rows or tables, e.g., the referential constraint, are disabled before the direct path loading and are re-enabled afterwards. </p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >OCP DBA 9i</a> in first attampt.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" > Pass Oracle 1Z0-033 - Oracle9i DB: Performance Tuning</a></span><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.ucertify.com%2Farticle%2Fwhat-is-direct-path-loading-2.html&amp;linkname=What%20is%20direct%20path%20loading%3F"><img src="http://www.ucertify.com/article/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://www.ucertify.com/article/what-is-direct-path-loading-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
