<?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; 1Z0-033</title>
	<atom:link href="http://www.ucertify.com/article/exams/1z0-033/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;'> <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" > Pass Oracle ocp-dba9i - OCP DBA 9i</a></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%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 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;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >ocp-dba10g  OCP DBA 10g</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle OCP DBA 9i</a> exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/ocm-10g.html" >ocm-10g</a> for exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >RAC Certified Expert 10g</a> in first attampt.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >1Z0-033 - Oracle9i DB: Performance Tuning</a> simulation.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/exams/Oracle/1Z0-043.html" >1Z0-043</a> test study guide and practice question.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-045.html" >1Z0-045</a> for exam.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/exams/Oracle/1Z0-053.html" >Oracle OCP: Oracle Database 11g: Administration II</a> certified.</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;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >Oracle ocp-dba9i</a> download free trial.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >1Z0-033  Oracle9i DB: Performance Tuning</a> 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-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>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;'> 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;'> 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;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i  OCP DBA 9i</a> exam.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >Oracle9i DB: Performance Tuning</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-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;'> 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-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;'> 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;'> Click here to download <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >1Z0-033</a> test study guide and practice question.</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>
		<item>
		<title>Materialized views</title>
		<link>http://www.ucertify.com/article/how-are-materialized-views-managed-2.html</link>
		<comments>http://www.ucertify.com/article/how-are-materialized-views-managed-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">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-2.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-2.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-2.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-2.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><uc:stx> Complete </uc:stx> &#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><uc:stx> Fast </uc:stx> &#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><uc:stx> Force </uc:stx> &#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><uc:stx> Never </uc:stx> &#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><Uc:hed> Read only</uc:hed> </p>
<ul>
<li>It cannot be updated. </li>
<li> Complex materialized views support the read only component of the frequency.</li>
</ul>
<p><uc:hed>Updateable</uc:hed></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><uc:hed>Writeable</uc:hed></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;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i</a> test study guide and practice question.</span><span style='border:1px solid #ccc;background-color:#eff3ef;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >Oracle Oracle9i DB: Performance Tuning</a> exam.</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-2.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-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How does  Database Resource Manager  perform database resource management?</title>
		<link>http://www.ucertify.com/article/how-does-database-resource-manager-perform-database-resource-management-2.html</link>
		<comments>http://www.ucertify.com/article/how-does-database-resource-manager-perform-database-resource-management-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">2201109</guid>
		<description><![CDATA[The Database Resource Manager (DRM) is a tool, which handles the resource allocation issues in a more efficient way than can probably be done by the operating system itself. Such issues include equal distribution of resources by the operating system to ev]]></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-does-database-resource-manager-perform-database-resource-management-2.html&amp;t=How+does++Database+Resource+Manager++perform+database+resource+management%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%2Fhow-does-database-resource-manager-perform-database-resource-management-2.html&amp;title=How+does++Database+Resource+Manager++perform+database+resource+management%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%2Fhow-does-database-resource-manager-perform-database-resource-management-2.html&amp;title=How+does++Database+Resource+Manager++perform+database+resource+management%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=How+does++Database+Resource+Manager++perform+database+resource+management%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%2Fhow-does-database-resource-manager-perform-database-resource-management-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The Database Resource Manager (DRM) is a tool, which handles the resource allocation issues in a more efficient way than can probably be done by the operating system itself. Such issues include equal distribution of resources by the operating system to every active process, inability of the operating system to prioritize the tasks, and inability of the operating system to manage database-specific resources. This tool has been provided with all versions after Oracle7i. Before the introduction of this feature, resource management was only possible through the use of profiles.</p>
<p>Some of the tasks that can be performed by the DRM are as follows:
<ul>
<li> Creating resource consumer groups and limiting the number of resources on each such group (Every user application is attached with a resource consumer group, hence each application has an upper limit on the number of resources that can be allocated to it).</li>
<li> Distributing the processing time by allocating percentage of CPU time to each user application (The DRM does the processing distribution in a more effective way than the operating system by allocating the CPU time on a priority basis).</li>
<li> Placing an upper limit on the number of user sessions that can be concurrently executed within a resource group.</li>
<li> Controlling the degree of parallelism of every transaction that are carried out by users of a resource consumer group.</li>
<li>Creating an active session pool that contains the maximum number of active sessions that are specified to be concurrently active within a group of users.</li>
<li>Creating an undo pool that contains undo space for consumption by a group of users.</li>
</ul>
<p>The DRM defines the following elements for database resource management:
<ul>
<li><uc:hed> Resource consumer group </uc:hed> &#8211; 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.</li>
<li> <uc:hed> Resource plan </uc:hed> &#8211; A resource plan directs the distribution of resources to the resource consumer groups. There can be more than one resource plan in a database. A plan within a plan is called a subplan. Subplans can also be created through the Database Resource Manager (DRM). Subplans increase the granularity of resource distribution by directing the number of resources that can be allocated to different users of an application within a resource consumer group. </li>
<li><uc:hed> Resource allocation method </uc:hed> &#8211; it is a policy used by the DRM for allocating a resource to a resource consumer group or resource plan. Although several resource allocation methods are available, a user can choose a specific method that best suites his requirements.</li>
<li><uc:hed> Resource plan directive </uc:hed> &#8211; A resource plan directive associates each resource consumer group to a specific resource plan, and directs the number of resources that can be allocated to each resource plan. It can be created using the CREATE_PLAN_DIRECTIVE procedure of the DBMS_RESOURCE_MANAGER package.</li>
</ul>
<p>The DRM controls the distribution of resources among the various sessions by managing the execution schedule within the database. The DRM decides which session should be allowed to run next and for how long, in accordance with the plan directive.</p>
<p>The use of DRM reduces the performance overhead by not switching the processes as frequently as an operating system scheduler does. The DRM also executes fewer processes concurrently and never context switches a process that is holding a latch.</p>
<p>The DRM controls distribution of resources among consumer groups using plan-level resource allocation methods and directives. It handles the distribution of resources among sessions belonging to consumer groups through the consumer-group methods and directives.</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;'> 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%2Fhow-does-database-resource-manager-perform-database-resource-management-2.html&amp;linkname=How%20does%20%20Database%20Resource%20Manager%20%20perform%20database%20resource%20management%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/how-does-database-resource-manager-perform-database-resource-management-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is log writer (LGWR)?</title>
		<link>http://www.ucertify.com/article/what-is-log-writer-lgwr-2.html</link>
		<comments>http://www.ucertify.com/article/what-is-log-writer-lgwr-2.html#comments</comments>
		<pubDate>Tue, 08 Sep 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>
		<category><![CDATA[1Z0-032]]></category>
		<category><![CDATA[1Z0-033]]></category>
		<category><![CDATA[1Z0-040]]></category>
		<category><![CDATA[1Z0-042]]></category>
		<category><![CDATA[1Z0-043]]></category>
		<category><![CDATA[1Z0-045]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-052]]></category>

		<guid isPermaLink="false">2201007</guid>
		<description><![CDATA[The log writer (LGWR) is an Oracle background process. It is responsible for writing all the new entries that have been copied in the redo log buffer since the LGWR last wrote the entries to a redo log file. The log writer should write the entries of the ]]></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-log-writer-lgwr-2.html&amp;t=What+is+log+writer+%28LGWR%29%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-log-writer-lgwr-2.html&amp;title=What+is+log+writer+%28LGWR%29%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-log-writer-lgwr-2.html&amp;title=What+is+log+writer+%28LGWR%29%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+log+writer+%28LGWR%29%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-log-writer-lgwr-2.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The log writer (LGWR) is an Oracle background process. It is responsible for writing all the new entries that have been copied in the redo log buffer since the LGWR last wrote the entries to a redo log file. The log writer should write the entries of the redo log buffer fast enough, so that buffers are immediately available for new entries. </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/oca-dba9i.html" >OCA DBA 9i</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i  OCP DBA 9i</a> exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-031.html" >1Z0-031</a> for exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-032.html" >1Z0-032</a> for exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-033.html" >1Z0-033</a> for exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-040.html" >1Z0-040  OCA, 10g New Feature for Administrator</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-042.html" >1Z0-042  Oracle Database 10g: Admin - I</a> exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/exams/Oracle/1Z0-043.html" >1Z0-043 Oracle Database 10g: Admin - II</a> exam practice questions.<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;'> Click here to download <a href="http://www.ucertify.com/exams/Oracle/1Z0-047.html" >1Z0-047</a> test study guide and practice question.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/exams/Oracle/1Z0-052.html" >1Z0-052</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%2Fwhat-is-log-writer-lgwr-2.html&amp;linkname=What%20is%20log%20writer%20%28LGWR%29%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-log-writer-lgwr-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
