<?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-001</title>
	<atom:link href="http://www.ucertify.com/article/exams/1z0-001/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>What is the structure of a PL/SQL block?</title>
		<link>http://www.ucertify.com/article/what-is-the-structure-of-a-plsql-block.html</link>
		<comments>http://www.ucertify.com/article/what-is-the-structure-of-a-plsql-block.html#comments</comments>
		<pubDate>Wed, 22 Jul 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCA DBA 9i PL/SQL]]></category>
		<category><![CDATA[OCA PL/SQL Developer]]></category>
		<category><![CDATA[OCP PL/SQL Developer]]></category>
		<category><![CDATA[Oracle PL/SQL Developer]]></category>
		<category><![CDATA[1Z0-001]]></category>
		<category><![CDATA[1Z0-147]]></category>

		<guid isPermaLink="false">1801277</guid>
		<description><![CDATA[Procedural Language/Structured Query Language (PL/SQL) is a procedural language extension to SQL, the standard data access language for relational databases. PL/SQL is not an Oracle product in its own right; rather, it is a technology used by Oracle serve]]></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-structure-of-a-plsql-block.html&amp;t=What+is+the+structure+of+a+PL%2FSQL+block%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-structure-of-a-plsql-block.html&amp;title=What+is+the+structure+of+a+PL%2FSQL+block%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-structure-of-a-plsql-block.html&amp;title=What+is+the+structure+of+a+PL%2FSQL+block%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+the+structure+of+a+PL%2FSQL+block%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-structure-of-a-plsql-block.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Procedural Language/Structured Query Language (PL/SQL) is a procedural language extension to SQL, the standard data access language for relational databases. PL/SQL is not an Oracle product in its own right; rather, it is a technology used by Oracle server and certain Oracle tools.</p>
<p>PL/SQL offers modern software engineering features (such as data encapsulation, exception handling, object orientation, and information hiding) and brings hi-tech programming to the Oracle server and toolset. It also incorporates many of the advanced features of the third generation programming languages. It allows the SQL statements to be included in block-structured and procedural units of code. In this way, PL/SQL combines the ease and flexibility of SQL with the structured programming language constructs such as IF&#8230;THEN, WHILE, and LOOP, thereby making PL/SQL a powerful transaction processing language.</p>
<p>PL/SQL blocks are passed to and processed by a PL/SQL engine, which may reside within the Oracle tool that passes the blocks or within the Oracle server. The engine that is actually used depends on from where the PL/SQL block is being invoked. When PL/SQL blocks are submitted from a Pro*C or a Pro*Cobol program, iSQL*Plus, or Server Manager, then the PL/SQL engine in the Oracle server processes them. The PL/SQL engine separates the SQL statements and sends them individually to the SQL statements executer.</p>
<p>A PL/SQL program is comprised of one or more PL/SQL blocks. These blocks can be entirely separate or nested within one another. A PL/SQL block may consist of the following three sections:</p>
<ul>
<li><uc:hed>Declarative:</uc:hed> The declarative section of a PL/SQL block contains all variables, constants, cursors, and user-defined exceptions that are referenced in the executable and declarative sections. The declarative section is optional in a PL/SQL block.</li>
<li><uc:hed>Executable:</uc:hed> The executable section contains SQL and PL/SQL statements to manipulate data in the database and in the block, respectively. The executable section is mandatory in a PL/SQL block.</li>
<li><uc:hed>Exceptional:</uc:hed> The exceptional section specifies the actions to be performed when errors or abnormal conditions arise in the executable section. This section is optional.</li>
</ul>
<p>Following is the structure of a PL/SQL block:</p>
<p><uc:stx>DECLARE &nbsp;&nbsp;&nbsp; -Optional<br />
&nbsp;&nbsp;&nbsp;Variables, cursors, user-defined exceptions<br />
BEGIN &nbsp;&nbsp;&nbsp; -Mandatory<br />
&nbsp;&nbsp;&nbsp;SQL statements<br />
&nbsp;&nbsp;&nbsp;PL/SQL statements<br />
EXCEPTION &nbsp;&nbsp;&nbsp; -Optional<br />
&nbsp;&nbsp;&nbsp;Actions to be performed when errors occur<br />
END; &nbsp;&nbsp;&nbsp; -Mandatory</uc:stx></p>
<p>A semicolon (;) must be placed at the end of a SQL statement or PL/SQL control statement. Section keywords (DECLARE, BEGIN, and EXCEPTION) are not followed by semicolons. The END section keyword and all other PL/SQL statements require a semicolon to terminate the statement. The statements can be stringed together on the same line, but this method is not recommended for clarity and editing. When a PL/SQL block is executed successfully without unhandled errors or compile errors, a message reading &#8216;PL/SQL procedure successfully completed&#8217; should be displayed.</p>
<p>Basically, there are two types of PL/SQL blocks: anonymous block and subprogram. The basic units (subprograms and anonymous blocks) that make up a PL/SQL program are logical blocks, which can contain any number of nested sub blocks. Therefore, one block can represent a small part of another block, which in turn can be a part of the whole unit of code.</p>
<p><uc:hed>Anonymous block:</uc:hed> An anonymous block is an unnamed PL/SQL block. In an application, an anonymous block is declared at the point where it is to be executed and is passed to the PL/SQL engine for execution at run time. An anonymous block can be embedded within a precompiler program, iSQL*Plus, or Server Manager. Triggers in Oracle Developer components consist of such blocks.</p>
<p><uc:hed>Subprogram:</uc:hed> A subprogram is a named PL/SQL block that can accept parameters and can be invoked. There are two types of subprograms: procedure and function. Subprograms can be stored at the server or application level. By using Oracle Developer components (Forms, Reports, and Graphics), procedures and functions can be declared as part of an application (a form or report) and be called from other procedures, functions, and triggers within the same application whenever necessary. </p>
<ul>
<li><uc:hed>Procedure:</uc:hed> A procedure is a named PL/SQL block that can accept parameters (sometimes referred to as arguments) and be invoked. Generally, a procedure is used to perform an action. A procedure has a header, a declaration section, an executable section, and an optional exception-handling section. A procedure may or may not return values to its calling environment.</p>
<p>A procedure can be compiled and stored in the database as a schema object for repeated execution. A procedure stored in the database is referred to as a stored procedure. Procedures promote reusability and maintainability. When validated, they can be used in any number of applications. If the functional requirements of the application change, only the procedure needs to be updated.</li>
<li><uc:hed>Function:</uc:hed> A function is a named PL/SQL block that can accept parameters and be invoked. Generally, a function is used to compute a value. A function is similar to a procedure except that a function must return a value to the calling environment, whereas a procedure may or may not return values to its calling environment. Like a procedure, a function has a header, a declarative part, an executable part, and an optional exception-handling part. A function must have a RETURN clause in the header and at least one RETURN statement in the executable section.
<p>Functions can be stored in the database as a schema object for repeated execution. A function stored in the database is referred to as a stored function. Functions can also be created at client-side applications. Functions promote reusability and maintainability. They can be used in any number of applications. If the processing requirements of an application change, only the function needs to be updated.</li>
</ul>
<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-pl-sql.html" >OCA DBA 9i PL/SQL</a> in first attampt.<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;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/ocp-pl-sql.html" >Oracle ocp-pl-sql</a> download free trial.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >oracle-pl-sql</a> for exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >1Z0-001 Oracle PL/SQL</a> exam practice questions.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/exams/Oracle/1Z0-147.html" >Oracle Oracle9i: Program with PL/SQL</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-the-structure-of-a-plsql-block.html&amp;linkname=What%20is%20the%20structure%20of%20a%20PL%2FSQL%20block%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-structure-of-a-plsql-block.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is DML?</title>
		<link>http://www.ucertify.com/article/what-is-dml.html</link>
		<comments>http://www.ucertify.com/article/what-is-dml.html#comments</comments>
		<pubDate>Sun, 12 Jul 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 DBA 9i PL/SQL]]></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[1Z0-001]]></category>
		<category><![CDATA[1Z0-007]]></category>
		<category><![CDATA[1Z0-033]]></category>
		<category><![CDATA[1Z0-040]]></category>
		<category><![CDATA[1Z0-045]]></category>
		<category><![CDATA[70-432]]></category>

		<guid isPermaLink="false">1501031</guid>
		<description><![CDATA[Data Manipulation Language (DML) is a category of SQL statements that query and update data in a database. Statements such as SELECT, UPDATE, INSERT, DELETE etc., are included in this category. These statements can be grouped with Data Control Language (D]]></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-dml.html&amp;t=What+is+DML%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-dml.html&amp;title=What+is+DML%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-dml.html&amp;title=What+is+DML%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+DML%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-dml.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Data Manipulation Language (DML) is a category of SQL statements that query and update data in a database. Statements such as SELECT, UPDATE, INSERT, DELETE etc., are included in this category. These statements can be grouped with Data Control Language (DCL) statements. </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;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i.html" >oca-dba9i</a> for exam.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" >Oracle oca-dba9i-pl-sql</a> download free trial.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >Oracle oca-pl-sql</a> download free trial.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >ocp-dba10g</a> for exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >ocp-dba-11g OCP DBA 11g</a> exam practice questions.<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;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/ocm-10g.html" >ocm-10g - Oracle Certified Master 10g</a> simulation.<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;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/performance-tuning-certified-expert-11g.html" >Oracle Performance Tuning Expert 11g</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >rac-administrator-certified-experts-10g  RAC Certified Expert 10g</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle PL/SQL</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-007.html" >Oracle Introduction to Oracle9i: SQL</a> exam.<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;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-040.html" >Oracle OCA, 10g New Feature for Administrator</a> exam.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/exams/Oracle/1Z0-045.html" >1Z0-045</a> test study guide and practice question.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/exams/Microsoft/70-432.html" > Pass Microsoft 70-432 - MCTS: SQL Server 2008, Implementation</a></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-dml.html&amp;linkname=What%20is%20DML%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-dml.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is PL/SQL?</title>
		<link>http://www.ucertify.com/article/what-is-plsql.html</link>
		<comments>http://www.ucertify.com/article/what-is-plsql.html#comments</comments>
		<pubDate>Sat, 11 Jul 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 DBA 9i PL/SQL]]></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-001]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>

		<guid isPermaLink="false">1501025</guid>
		<description><![CDATA[PL/SQL is an extension of Oracle's procedural language. It combines SQL with the structured programming language constructs, such as IF...THEN, WHILE, LOOP etc. Applications can send PL/SQL blocks to the database instead of sending individual SQL statemen]]></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-plsql.html&amp;t=What+is+PL%2FSQL%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-plsql.html&amp;title=What+is+PL%2FSQL%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-plsql.html&amp;title=What+is+PL%2FSQL%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+PL%2FSQL%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-plsql.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p><uc:kwd>PL/SQL</uc:kwd> is an extension of Oracle&#8217;s procedural language. It combines SQL with the structured programming language constructs, such as IF&#8230;THEN, WHILE, LOOP etc. Applications can send <uc:kwd>PL/SQL</uc:kwd> blocks to the database instead of sending individual SQL statements. This reduces network traffic.</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/oca-dba10g.html" >oca-dba10g  OCA DBA 10g</a> exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >oca-dba-11g OCA DBA 11g</a> exam practice questions.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i.html" >Oracle OCA DBA 9i</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" >OCA DBA 9i PL/SQL</a> in first attampt.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql - OCA PL/SQL Developer</a> simulation.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >ocp-dba10g</a> for exam.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >ocp-dba-11g</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-dba9i.html" >Oracle OCP DBA 9i</a> exam.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/ocp-pl-sql.html" > Pass Oracle ocp-pl-sql - OCP PL/SQL Developer</a><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;'> 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;'> Become <a href="http://www.ucertify.com/certifications/Oracle/performance-tuning-certified-expert-11g.html" >Oracle Performance Tuning Expert 11g</a> certified.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >rac-administrator-certified-experts-10g RAC Certified Expert 10g</a> exam practice questions.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-10g.html" >SQL Certified Expert 10g</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-11g.html" >Oracle SQL Certified Expert 11g</a> exam.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" > Pass Oracle 1Z0-001 - Oracle PL/SQL</a><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-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%2Fwhat-is-plsql.html&amp;linkname=What%20is%20PL%2FSQL%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-plsql.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is GROUP BY clause?</title>
		<link>http://www.ucertify.com/article/what-is-group-by-clause.html</link>
		<comments>http://www.ucertify.com/article/what-is-group-by-clause.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[DB2 Certification]]></category>
		<category><![CDATA[Junior Level Linux Professional (LPIC-1)]]></category>
		<category><![CDATA[Linux Professional]]></category>
		<category><![CDATA[OCA DBA 10g]]></category>
		<category><![CDATA[OCA DBA 11g]]></category>
		<category><![CDATA[OCA DBA 9i]]></category>
		<category><![CDATA[OCA DBA 9i PL/SQL]]></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[UCP]]></category>
		<category><![CDATA[000-730]]></category>
		<category><![CDATA[117-102]]></category>
		<category><![CDATA[1Z0-001]]></category>
		<category><![CDATA[1Z0-007]]></category>
		<category><![CDATA[1Z0-040]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>
		<category><![CDATA[1Z0-147]]></category>
		<category><![CDATA[70-305]]></category>
		<category><![CDATA[70-315]]></category>
		<category><![CDATA[70-316]]></category>
		<category><![CDATA[70-320]]></category>
		<category><![CDATA[70-431A]]></category>
		<category><![CDATA[70-444]]></category>
		<category><![CDATA[70-447]]></category>
		<category><![CDATA[77-605]]></category>

		<guid isPermaLink="false">2442</guid>
		<description><![CDATA[The GROUP BY clause groups selected rows on the basis of values of specified column(s) for each row, and returns a single row of summary information for each group. Rows that have the same values in the specified grouping column(s) are grouped together. T]]></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-group-by-clause.html&amp;t=What+is+GROUP+BY+clause%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-group-by-clause.html&amp;title=What+is+GROUP+BY+clause%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-group-by-clause.html&amp;title=What+is+GROUP+BY+clause%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+GROUP+BY+clause%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-group-by-clause.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The GROUP BY clause groups selected rows on the basis of values of specified column(s) for each row, and returns a single row of summary information for each group. Rows that have the same values in the specified grouping column(s) are grouped together. The GROUP BY clause suppresses duplicate rows for the grouping column(s). It does not guarantee the order of the result set. Therefore, an ORDER BY clause should be used with the GROUP BY clause to sort the result set in the desired order.</p>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/IBM/db2.html" >db2</a> test study guide and practice question.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/LPI/lpic-1.html" >lpic-1 - Junior Level Linux Professional (LPIC-1)</a> simulation.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/LPI/lpic.html" >LPI lpic</a> download free trial.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >Oracle OCA DBA 10g</a> exam.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >oca-dba-11g - OCA DBA 11g</a> simulation.<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;'> <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" > Pass Oracle oca-dba9i-pl-sql - OCA DBA 9i PL/SQL</a><li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql</a> for exam.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >Oracle OCP DBA 10g</a> certified.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >Oracle OCP DBA 11g</a> certified.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i</a> test study guide and practice question.<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" >Oracle Performance Tuning Expert 11g</a> exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >rac-administrator-certified-experts-10g RAC Certified Expert 10g</a> exam practice questions.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/LPI/ucp.html" >ucp - UCP</a> simulation.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/IBM/000-730.html" >IBM DB2 9 Family Fundamentals</a> in first attampt.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/exams/LPI/117-102.html" >LPI 117-102</a> download free trial.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle Oracle PL/SQL</a> exam.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/exams/Oracle/1Z0-007.html" >Oracle Introduction to Oracle9i: SQL</a> certified.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/exams/Oracle/1Z0-040.html" >Oracle 1Z0-040</a> download free trial.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-047.html" >1Z0-047</a> for exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-051.html" >OCA: Oracle Database 11g-SQL Fundamentals-I</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-147.html" >1Z0-147  Oracle9i: Program with PL/SQL</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Microsoft/70-305.html" >Web Based Applications with VB.NET</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Microsoft/70-315.html" >70-315  Web Applications with C# .NET</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Microsoft/70-316.html" >Microsoft Windows Based Application C#.NET</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Microsoft/70-320.html" >Developing XML Web Services C#.NET</a> in first attampt.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/exams/Microsoft/70-431.html" >70-431 SQL Server 2005 Implementation</a> exam practice questions.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Microsoft/70-444.html" >70-444  SQL Server 2005 Optimizing and Maintaining</a> exam.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/exams/Microsoft/70-447.html" >Microsoft 70-447</a> download free trial.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/exams/Microsoft/77-605.html" > Pass Microsoft 77-605 - MCAS: Microsoft Office Access 2007</a></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-group-by-clause.html&amp;linkname=What%20is%20GROUP%20BY%20clause%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-group-by-clause.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is HAVING clause?</title>
		<link>http://www.ucertify.com/article/what-is-having-clause.html</link>
		<comments>http://www.ucertify.com/article/what-is-having-clause.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[DB2 Certification]]></category>
		<category><![CDATA[OCA DBA 10g]]></category>
		<category><![CDATA[OCA DBA 11g]]></category>
		<category><![CDATA[OCA DBA 9i]]></category>
		<category><![CDATA[OCA DBA 9i PL/SQL]]></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[000-730]]></category>
		<category><![CDATA[1Z0-001]]></category>
		<category><![CDATA[1Z0-007]]></category>
		<category><![CDATA[1Z0-040]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>
		<category><![CDATA[70-431A]]></category>
		<category><![CDATA[70-444]]></category>
		<category><![CDATA[70-447]]></category>
		<category><![CDATA[70-561-CSHARP]]></category>
		<category><![CDATA[CX310-091]]></category>
		<category><![CDATA[CX310-092]]></category>

		<guid isPermaLink="false">2474</guid>
		<description><![CDATA[The HAVING clause sets conditions for the GROUP BY clause in a SELECT statement. It restricts the groups of rows on the basis of aggregate information. Only groups of rows, which satisfy the conditions specified in the HAVING clause are displayed. The HAV]]></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-having-clause.html&amp;t=What+is+HAVING+clause%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-having-clause.html&amp;title=What+is+HAVING+clause%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-having-clause.html&amp;title=What+is+HAVING+clause%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+HAVING+clause%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-having-clause.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The HAVING clause sets conditions for the <uc:kwd>GROUP BY</uc:kwd> clause in a <uc:kwd>SELECT</uc:kwd> statement. It restricts the groups of rows on the basis of aggregate information. Only groups of rows, which satisfy the conditions specified in the HAVING clause are displayed. The HAVING clause cannot be used without an associated GROUP BY clause.</p>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/IBM/db2.html" >IBM db2</a> download free trial.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >OCA DBA 10g</a> in first attampt.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >oca-dba-11g - OCA DBA 11g</a> simulation.<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;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" >OCA DBA 9i PL/SQL</a> in first attampt.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql  OCA PL/SQL Developer</a> exam.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >Oracle ocp-dba10g</a> download free trial.<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;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i OCP DBA 9i</a> exam practice questions.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/ocp-pl-sql.html" >ocp-pl-sql</a> test study guide and practice question.<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;'> Become <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >Oracle Oracle PL/SQL Developer</a> certified.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/performance-tuning-certified-expert-11g.html" > Pass Oracle performance-tuning-certified-expert-11g - Performance Tuning Expert 11g</a><li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" >rac-administrator-certified-experts-10g - RAC Certified Expert 10g</a> simulation.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/exams/IBM/000-730.html" >000-730 IBM DB2 9 Family Fundamentals</a> exam practice questions.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle PL/SQL</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-007.html" >1Z0-007</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;'> <a href="http://www.ucertify.com/exams/Oracle/1Z0-047.html" > Pass Oracle 1Z0-047 - Oracle Database SQL Expert</a><li style='margin-left:10px;'> <a href="http://www.ucertify.com/exams/Oracle/1Z0-051.html" > Pass Oracle 1Z0-051 - OCA: Oracle Database 11g-SQL Fundamentals-I</a><li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/exams/Microsoft/70-431.html" >Microsoft SQL Server 2005 Implementation</a> certified.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/exams/Microsoft/70-444.html" >Microsoft SQL Server 2005 Optimizing and Maintaining</a> certified.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Microsoft/70-447.html" >70-447  SQL Server 2005 Design</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Microsoft/70-561-CSHARP.html" >70-561-CSHARP  MCTS: C#.NET Framework 3.5 - ADO.NET Application Development</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/SUN/CX310-091.html" >SCBCD Java 5.0</a> in first attampt.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/exams/SUN/CX310-092.html" > Pass SUN CX310-092 - SCBCD Java Upgrade</a></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-having-clause.html&amp;linkname=What%20is%20HAVING%20clause%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-having-clause.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is normalization?</title>
		<link>http://www.ucertify.com/article/what-is-normalization.html</link>
		<comments>http://www.ucertify.com/article/what-is-normalization.html#comments</comments>
		<pubDate>Thu, 18 Jun 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[MCAD]]></category>
		<category><![CDATA[MCDBA]]></category>
		<category><![CDATA[MCP]]></category>
		<category><![CDATA[MCSA]]></category>
		<category><![CDATA[MCSA 2000]]></category>
		<category><![CDATA[MCSA 2000 to 2003]]></category>
		<category><![CDATA[MCSA to MCSE-2003]]></category>
		<category><![CDATA[MCSE]]></category>
		<category><![CDATA[MCSE 2000]]></category>
		<category><![CDATA[OCA DBA 9i PL/SQL]]></category>
		<category><![CDATA[Oracle PL/SQL Developer]]></category>
		<category><![CDATA[1Z0-001]]></category>
		<category><![CDATA[70-228]]></category>
		<category><![CDATA[70-229]]></category>
		<category><![CDATA[70-300]]></category>
		<category><![CDATA[70-441]]></category>

		<guid isPermaLink="false">1320</guid>
		<description><![CDATA[Normalization is the method used to optimize databases. It is important to implement a reasonable level of normalization by creating more tables that contain fewer columns and by defining a relationship between the tables. Normalizing a logical database d]]></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-normalization.html&amp;t=What+is+normalization%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-normalization.html&amp;title=What+is+normalization%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-normalization.html&amp;title=What+is+normalization%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+normalization%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-normalization.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Normalization is the method used to optimize databases. It is important to implement a reasonable level of normalization by creating more tables that contain fewer columns and by defining a relationship between the tables. Normalizing a logical database design involves use of formal methods to separate the data into multiple, related tables. These methods are called normalization rules. </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/Microsoft/mcad.html" >MCAD</a> in first attampt.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Microsoft/mcdba.html" >mcdba - MCDBA</a> simulation.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Microsoft/mcp.html" > Pass Microsoft mcp - MCP</a><li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Microsoft/mcsa-2003.html" >mcsa-2003 MCSA</a> exam practice questions.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Microsoft/mcsa-2000.html" >Microsoft mcsa-2000</a> download free trial.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Microsoft/mcsa-2000-to-2003.html" >Microsoft mcsa-2000-to-2003</a> download free trial.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Microsoft/mcsa-to-mcse-2003.html" >Microsoft MCSA to MCSE-2003</a> exam.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Microsoft/mcse-2003.html" >Microsoft MCSE</a> certified.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Microsoft/mcse-2000.html" >Microsoft MCSE 2000</a> exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" >oca-dba9i-pl-sql</a> for exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >Oracle PL/SQL Developer</a> in first attampt.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle PL/SQL</a> in first attampt.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Microsoft/70-228.html" >70-228</a> for exam.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/exams/Microsoft/70-229.html" >70-229 - SQL Server 2000 Design</a> simulation.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/exams/Microsoft/70-300.html" >70-300 - Microsoft .NET Analyzing Req.</a> simulation.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/exams/Microsoft/70-441.html" >70-441 - PRO: SQL Server 2005 Designing Solutions  </a> simulation.</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-normalization.html&amp;linkname=What%20is%20normalization%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-normalization.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is SUBSTR function?</title>
		<link>http://www.ucertify.com/article/what-is-substr-function.html</link>
		<comments>http://www.ucertify.com/article/what-is-substr-function.html#comments</comments>
		<pubDate>Wed, 17 Jun 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 DBA 9i PL/SQL]]></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-001]]></category>
		<category><![CDATA[1Z0-007]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>

		<guid isPermaLink="false">2363</guid>
		<description><![CDATA[The SUBSTR function returns a specific portion of a character string.

Syntax:

SUBSTR (&#60;str&#62;, &#60;m&#62;[, &#60;n&#62;])

where,
str is a character string.
m and n are integers.

The SUBSTR function returns a portion of str, which is n characters long]]></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-substr-function.html&amp;t=What+is+SUBSTR+function%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-substr-function.html&amp;title=What+is+SUBSTR+function%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-substr-function.html&amp;title=What+is+SUBSTR+function%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+SUBSTR+function%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-substr-function.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The SUBSTR function returns a specific portion of a character string.</p>
<p><uc:hed>Syntax:</uc:hed></p>
<p><uc:stx>SUBSTR (&lt;str&gt;, &lt;m&gt;[, &lt;n&gt;])</uc:stx></p>
<p>where,</p>
<li>str is a character string.</li>
<p></p>
<li>m and n are integers.</li>
<p>The SUBSTR function returns a portion of str, which is n characters long, starting from position m. If m is positive, the position is counted from the beginning of the string. If m is negative, the position is counted backwards from the end of the string. If m is 0, it is treated as 1. If n is omitted, the function returns all the characters to the end of the string. The function returns NULL if n is 0 or negative.</p>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >oca-dba10g</a> test study guide and practice question.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >Oracle oca-dba-11g</a> download free trial.<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;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" >oca-dba9i-pl-sql</a> for exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql OCA 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/ocp-dba10g.html" >Oracle OCP DBA 10g</a> exam.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >Oracle OCP DBA 11g</a> certified.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i</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-pl-sql.html" >Oracle OCP PL/SQL Developer</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/ocm-10g.html" >Oracle Oracle Certified Master 10g</a> exam.<li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >Oracle oracle-pl-sql</a> download free trial.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/performance-tuning-certified-expert-11g.html" >Oracle Performance Tuning Expert 11g</a> exam.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" > Pass Oracle rac-administrator-certified-experts-10g - RAC Certified Expert 10g</a><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;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-11g.html" >sql-certified-expert-11g - SQL Certified Expert 11g</a> simulation.<li style='margin-left:10px;'> Become <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle Oracle PL/SQL</a> certified.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/exams/Oracle/1Z0-007.html" > Pass Oracle 1Z0-007 - Introduction to Oracle9i: SQL</a><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.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/exams/Oracle/1Z0-051.html" >1Z0-051 - OCA: Oracle Database 11g-SQL Fundamentals-I</a> simulation.</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-substr-function.html&amp;linkname=What%20is%20SUBSTR%20function%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-substr-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is NVL function?</title>
		<link>http://www.ucertify.com/article/what-is-nvl-function.html</link>
		<comments>http://www.ucertify.com/article/what-is-nvl-function.html#comments</comments>
		<pubDate>Wed, 17 Jun 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 DBA 9i PL/SQL]]></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-001]]></category>
		<category><![CDATA[1Z0-007]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>

		<guid isPermaLink="false">2366</guid>
		<description><![CDATA[The NVL function is used when a non-NULL value needs to be returned in place of a NULL value. 

Syntax:

NVL (p1, p2)  

The NVL function takes two arguments, p1 and p2. It returns p2 if p1 is NULL. If p1 is not NULL, the function returns p1 itself.]]></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-nvl-function.html&amp;t=What+is+NVL+function%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-nvl-function.html&amp;title=What+is+NVL+function%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-nvl-function.html&amp;title=What+is+NVL+function%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+NVL+function%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-nvl-function.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>The NVL function is used when a non-NULL value needs to be returned in place of a NULL value. </p>
<p><uc:hed>Syntax:</uc:hed></p>
<p><uc:stx>NVL (p1, p2)</uc:stx>  </p>
<p>The NVL function takes two arguments, p1 and p2. It returns p2 if p1 is NULL. If p1 is not NULL, the function returns p1 itself.</p>
<ul style='border:1px solid #ccc;background-color:#eff3ef;padding:10px;'><li style='margin-left:10px;'> Best exam simulation <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >Oracle oca-dba10g</a> download free trial.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >oca-dba-11g OCA DBA 11g</a> exam practice questions.<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/oca-dba9i-pl-sql.html" >oca-dba9i-pl-sql  OCA DBA 9i PL/SQL</a> exam.<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;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >OCP DBA 11g</a> in first attampt.<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;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/ocp-pl-sql.html" >ocp-pl-sql OCP PL/SQL Developer</a> exam practice questions.<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;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >oracle-pl-sql</a> for exam.<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;'> 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;'> Become <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-11g.html" >Oracle SQL Certified Expert 11g</a> certified.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle Oracle PL/SQL</a> exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-007.html" >1Z0-007</a> for exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/exams/Oracle/1Z0-047.html" >1Z0-047</a> for exam.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/exams/Oracle/1Z0-051.html" >1Z0-051 OCA: Oracle Database 11g-SQL Fundamentals-I</a> exam practice questions.</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-nvl-function.html&amp;linkname=What%20is%20NVL%20function%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-nvl-function.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is self join?</title>
		<link>http://www.ucertify.com/article/what-is-self-join.html</link>
		<comments>http://www.ucertify.com/article/what-is-self-join.html#comments</comments>
		<pubDate>Sun, 15 Mar 2009 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[Junior Level Linux Professional (LPIC-1)]]></category>
		<category><![CDATA[Linux Professional]]></category>
		<category><![CDATA[OCA DBA 10g]]></category>
		<category><![CDATA[OCA DBA 11g]]></category>
		<category><![CDATA[OCA DBA 9i]]></category>
		<category><![CDATA[OCA DBA 9i PL/SQL]]></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[UCP]]></category>
		<category><![CDATA[117-102]]></category>
		<category><![CDATA[1Z0-001]]></category>
		<category><![CDATA[1Z0-047]]></category>
		<category><![CDATA[1Z0-051]]></category>

		<guid isPermaLink="false">2483</guid>
		<description><![CDATA[Self join joins a table to itself. Each row of the table is joined with itself and with every other row of the table.

 Example: 

SELECT F.EmployeeID, F.LastName, S.EmployeeID, S.LastName, F.Country
FROM Employee F, Employee S
WHERE F.Country = S.Country]]></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-self-join.html&amp;t=What+is+self+join%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-self-join.html&amp;title=What+is+self+join%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-self-join.html&amp;title=What+is+self+join%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+self+join%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-self-join.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p>Self join joins a table to itself. Each row of the table is joined with itself and with every other row of the table.</p>
<p><b> Example:</b> </p>
<p>SELECT F.EmployeeID, F.LastName, S.EmployeeID, S.LastName, F.Country<br />
FROM Employee F, Employee S<br />
WHERE F.Country = S.Country<br />
AND F.EmployeeID < S.EmployeeID<br />
ORDER BY F.EmployeeID, S.EmployeeID;</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/LPI/lpic-1.html" >Junior Level Linux Professional (LPIC-1)</a> in first attampt.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/LPI/lpic.html" >lpic</a> test study guide and practice question.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/oca-dba10g.html" >oca-dba10g</a> test study guide and practice question.<li style='margin-left:10px;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/oca-dba-11g.html" >oca-dba-11g</a> test study guide and practice question.<li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i.html" > Pass Oracle oca-dba9i - OCA DBA 9i</a><li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" >oca-dba9i-pl-sql  OCA DBA 9i PL/SQL</a> exam.<li style='margin-left:10px;'> Download practice question and study guide for  <a href="http://www.ucertify.com/certifications/Oracle/oca-pl-sql.html" >oca-pl-sql</a> for exam.<li style='margin-left:10px;'> Get certified in first attempt download <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba10g.html" >ocp-dba10g - OCP DBA 10g</a> simulation.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba-11g.html" >OCP DBA 11g</a> in first attampt.<li style='margin-left:10px;'> Click here to get free <a href="http://www.ucertify.com/certifications/Oracle/ocp-dba9i.html" >ocp-dba9i OCP DBA 9i</a> exam practice questions.<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;'> 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;'> <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" > Pass Oracle oracle-pl-sql - Oracle PL/SQL Developer</a><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;'> <a href="http://www.ucertify.com/certifications/Oracle/rac-administrator-certified-experts-10g.html" > Pass Oracle rac-administrator-certified-experts-10g - RAC Certified Expert 10g</a><li style='margin-left:10px;'> <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-10g.html" > Pass Oracle sql-certified-expert-10g - SQL Certified Expert 10g</a><li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/Oracle/sql-certified-expert-11g.html" >Oracle SQL Certified Expert 11g</a> exam.<li style='margin-left:10px;'> Download free practice test for <a href="http://www.ucertify.com/certifications/LPI/ucp.html" >LPI UCP</a> exam.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/LPI/117-102.html" >Junior Level Linux Professional-II</a> in first attampt.<li style='margin-left:10px;'> Pass <a href="http://www.ucertify.com/exams/Oracle/1Z0-001.html" >Oracle PL/SQL</a> in first attampt.<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;'> Download free practice test for <a href="http://www.ucertify.com/exams/Oracle/1Z0-051.html" >Oracle OCA: Oracle Database 11g-SQL Fundamentals-I</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-self-join.html&amp;linkname=What%20is%20self%20join%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-self-join.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is cardinality?</title>
		<link>http://www.ucertify.com/article/what-is-cardinality_1501017.html</link>
		<comments>http://www.ucertify.com/article/what-is-cardinality_1501017.html#comments</comments>
		<pubDate>Mon, 10 Sep 2007 00:00:00 +0000</pubDate>
		<dc:creator>uCertify</dc:creator>
				<category><![CDATA[OCA DBA 9i PL/SQL]]></category>
		<category><![CDATA[Oracle PL/SQL Developer]]></category>
		<category><![CDATA[1Z0-001]]></category>

		<guid isPermaLink="false">1501017</guid>
		<description><![CDATA[Cardinality refers to the number of distinct values. For example, if a table has a cardinality of 500, it has 500 columns. Similarly, if a column has a cardinality of 20, it has 20 distinct values. ]]></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;'> <a href="http://www.ucertify.com/certifications/Oracle/oca-dba9i-pl-sql.html" > Pass Oracle oca-dba9i-pl-sql - OCA DBA 9i PL/SQL</a></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-cardinality_1501017.html&amp;t=What+is+cardinality%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-cardinality_1501017.html&amp;title=What+is+cardinality%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-cardinality_1501017.html&amp;title=What+is+cardinality%3F&amp;t=2 ' height='18' width='120' scrolling='no' frameborder='0' ></iframe></td> <td><script type="text/javascript"><!--yahooBuzzArticleHeadline=What+is+cardinality%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-cardinality_1501017.html&amp;source=ucertify&amp;style=compact ' height='20' width='90' frameborder='0' scrolling='no'></iframe></td></table></div><p><uc:kwd>Cardinality</uc:kwd> refers to the number of distinct values. For example, if a table has a cardinality of 500, it has 500 columns. Similarly, if a column has a cardinality of 20, it has 20 distinct values. </p>
<span style='border:1px solid #ccc;background-color:#eff3ef;'> Click here to download <a href="http://www.ucertify.com/certifications/Oracle/oracle-pl-sql.html" >oracle-pl-sql</a> test study guide and practice question.</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-001.html" >1Z0-001</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-cardinality_1501017.html&amp;linkname=What%20is%20cardinality%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-cardinality_1501017.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
