<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>Find Oracle Error Code Ora- and Pl/SQL Tips and Tricks</title>
	<link>http://orafind.com</link>
	<description>Complete Source for Oracle Error Code Ora-, Pl/Sql Tips and Tricks and Oracle Error Message Description</description>
	<pubDate>Tue, 15 Apr 2008 06:14:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>What is Oracle Error Code and Oracle Error Message ?</title>
		<link>http://orafind.com/oracle-error/what-is-oracle-error-code-and-oracle-error-message/</link>
		<comments>http://orafind.com/oracle-error/what-is-oracle-error-code-and-oracle-error-message/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 08:07:44 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[ORA]]></category>

		<category><![CDATA[Oracle Error Code]]></category>

		<category><![CDATA[Oracle Error Messages]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/what-is-oracle-error-code-and-oracle-error-message/</guid>
		<description><![CDATA[
For you Oracle Developer, Oracle Programmer and Oracle Professional, should be familiar with this Oracle Error Code Ora-XXXXX and Oracle Error Messages. This Oracle Error Code and Oracle error messages basically generated by Oracle database. The prefix &#8220;ORA-&#8221; shows that the message was generated by Oracle products. Every oracle error code or messages contains the [...]]]></description>
			<content:encoded><![CDATA[<p style="float:left"><a href='http://orafind.com/wp-content/uploads/2008/03/bug.png' title='Computer Bug'><img src='http://orafind.com/wp-content/uploads/2008/03/bug.png' alt='Computer Bug' /></a></p>
<p>For you Oracle Developer, Oracle Programmer and Oracle Professional, should be familiar with this Oracle Error Code Ora-XXXXX and Oracle Error Messages. This<strong> Oracle Error Code </strong>and<strong> Oracle error messages</strong> basically generated by Oracle database. The prefix &#8220;ORA-&#8221; shows that the message was generated by Oracle products. Every oracle error code or messages contains the message statement, a brief explanation of the probable causes, and a recommended action that you can do.</p>
<p>On this <a href="http://OraFind.com">OraFind.com</a> you can find the Oracle Error Code or Oracle Error Messages that you got. It is based on Oracle database error messages (Oracle 11g release 1 and some of it Oracle 8i). Please use this information only for personal, informational and non-commercial purposes. If you still don&#8217;t have any solution for your problem, you can <strong>leave your comment </strong>in every Error Code or Error Message that you find at <a href="http://OraFind.com">OraFind.com</a>, or for more detailed information please contact <strong>Oracle Support Services</strong>.</p>
<p class="akst_link"><a href="http://orafind.com/?p=285&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_285" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li>No Related Post</li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/what-is-oracle-error-code-and-oracle-error-message/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-01002: fetch out of sequence</title>
		<link>http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/</link>
		<comments>http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:14:19 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[fetch out of sequence]]></category>

		<category><![CDATA[ora 1002]]></category>

		<category><![CDATA[ORA-01002]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/</guid>
		<description><![CDATA[Cause : This error means that a fetch has been attempted from a cursor which is no longer valid. Note that a PL/SQL cursor loop implicitly does fetches, and thus may also cause this error. There are a number of possible causes for this error, including:
1) Fetching from a cursor after the last row has [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : This error means that a fetch has been attempted from a cursor which is no longer valid. Note that a PL/SQL cursor loop implicitly does fetches, and thus may also cause this error. There are a number of possible causes for this error, including:<br />
1) Fetching from a cursor after the last row has been retrieved and the ORA-1403 error returned.<br />
2) If the cursor has been opened with the FOR UPDATE clause, fetching after a COMMIT has been issued will return the error.<br />
3) Rebinding any placeholders in the SQL statement, then issuing a fetch before reexecuting the statement.<br />
<strong>Action</strong>:<br />
1) Do not issue a fetch statement after the last row has been retrieved -there are no more rows to fetch.<br />
2) Do not issue a COMMIT inside a fetch loop for a cursor that has been opened FOR UPDATE.<br />
3) Reexecute the statement after rebinding, then attempt to fetch again.</p>
<p class="akst_link"><a href="http://orafind.com/?p=495&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_495" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-01001 : invalid cursor</title>
		<link>http://orafind.com/oracle-error/ora-01001-invalid-cursor/</link>
		<comments>http://orafind.com/oracle-error/ora-01001-invalid-cursor/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:09:52 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[invalid cursor]]></category>

		<category><![CDATA[ora 1001]]></category>

		<category><![CDATA[ORA-01001]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-01001-invalid-cursor/</guid>
		<description><![CDATA[Cause : Either a host language program call specified an invalid cursor or the values of the AREASIZE and MAXOPENCURSORS options in the precompiler command were too small. All cursors must be opened using the OOPEN call before being referenced in any of the following calls: SQL, DESCRIBE, NAME, DEFINE, BIND, EXEC, FETCH, and CLOSE. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : Either a host language program call specified an invalid cursor or the values of the AREASIZE and MAXOPENCURSORS options in the precompiler command were too small. All cursors must be opened using the OOPEN call before being referenced in any of the following calls: SQL, DESCRIBE, NAME, DEFINE, BIND, EXEC, FETCH, and CLOSE. The Logon Data Area (LDA) must be defined by using OLON or OLOGON. If the LDA is not defined, this message is issued for the following calls: OPEN, COM, CON, ROL, and LOGOFF.<br />
<strong>Action</strong>: Check the erroneous call statement. Specify a correct LDA area or open the cursor as required. If there is no problem with the cursor, it may be necessary to increase the AREASIZE and MAXOPENCURSORS options before precompiling.</p>
<p class="akst_link"><a href="http://orafind.com/?p=494&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_494" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-01001-invalid-cursor/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-01000 : maximum open cursors exceeded</title>
		<link>http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/</link>
		<comments>http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:09:09 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[maximum open cursors exceeded]]></category>

		<category><![CDATA[ora 1000]]></category>

		<category><![CDATA[ORA-01000]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/</guid>
		<description><![CDATA[Cause : A host language program attempted to open too many cursors. The initialization parameter OPEN_CURSORS determines the maximum number of cursors per user.
Action : Modify the program to use fewer cursors. If this error occurs often, shut down Oracle, increase the value of OPEN_CURSORS, and then restart Oracle.
Share This
Related PostORA-01002: fetch out of sequenceORA-01001 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : A host language program attempted to open too many cursors. The initialization parameter OPEN_CURSORS determines the maximum number of cursors per user.<br />
<strong>Action</strong> : Modify the program to use fewer cursors. If this error occurs often, shut down Oracle, increase the value of OPEN_CURSORS, and then restart Oracle.</p>
<p class="akst_link"><a href="http://orafind.com/?p=493&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_493" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-00999 : invalid view name</title>
		<link>http://orafind.com/oracle-error/ora-00999-invalid-view-name/</link>
		<comments>http://orafind.com/oracle-error/ora-00999-invalid-view-name/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:08:25 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[invalid view name]]></category>

		<category><![CDATA[ora 999]]></category>

		<category><![CDATA[ORA-00999]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-00999-invalid-view-name/</guid>
		<description><![CDATA[Cause : In a CREATE VIEW statement, the view name was missing or invalid.
Action : Enter a valid view name following CREATE VIEW. Valid view names must begin with a letter, consist of only alphanumeric characters and the special characters $, _, and #, be less than or equal to 30 characters, and may not [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : In a CREATE VIEW statement, the view name was missing or invalid.<br />
<strong>Action</strong> : Enter a valid view name following CREATE VIEW. Valid view names must begin with a letter, consist of only alphanumeric characters and the special characters $, _, and #, be less than or equal to 30 characters, and may not be reserved words. If the view name contains other characters, it must be enclosed in double quotation marks.</p>
<p class="akst_link"><a href="http://orafind.com/?p=492&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_492" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-00999-invalid-view-name/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-00998 : must name this expression with a column alias</title>
		<link>http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/</link>
		<comments>http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:07:40 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[must name this expression with a column alias]]></category>

		<category><![CDATA[ora 998]]></category>

		<category><![CDATA[ORA-00998]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/</guid>
		<description><![CDATA[Cause : An expression or function was used in a CREATE VIEW statement, but no corresponding column name was specified. When expressions or functions are used in a view, all column names for the view must be explicitly specified in the CREATE VIEW statement.
Action : Enter a column name for each column in the view [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : An expression or function was used in a CREATE VIEW statement, but no corresponding column name was specified. When expressions or functions are used in a view, all column names for the view must be explicitly specified in the CREATE VIEW statement.<br />
<strong>Action</strong> : Enter a column name for each column in the view in parentheses after<br />
the view name.</p>
<p class="akst_link"><a href="http://orafind.com/?p=491&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_491" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-00997 : illegal use of LONG datatype</title>
		<link>http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/</link>
		<comments>http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:06:45 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[illegal use of LONG datatype]]></category>

		<category><![CDATA[ora 997]]></category>

		<category><![CDATA[ORA-00997]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/</guid>
		<description><![CDATA[Cause : A value of datatype LONG was used in a function or in a DISTINCT, WHERE, CONNECT BY, GROUP BY, or ORDER BY clause. A LONG value can only be used in a SELECT clause.
Action : Remove the LONG value from the function or clause.
Share This
Related PostORA-01002: fetch out of sequenceORA-01001 : invalid cursorORA-01000 [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : A value of datatype LONG was used in a function or in a DISTINCT, WHERE, CONNECT BY, GROUP BY, or ORDER BY clause. A LONG value can only be used in a SELECT clause.<br />
<strong>Action</strong> : Remove the LONG value from the function or clause.</p>
<p class="akst_link"><a href="http://orafind.com/?p=490&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_490" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-00996 : the concatenate operator is &#124;&#124;, not &#124;</title>
		<link>http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/</link>
		<comments>http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:05:45 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[not |]]></category>

		<category><![CDATA[ora 996]]></category>

		<category><![CDATA[ORA-00996]]></category>

		<category><![CDATA[the concatenate operator is ||]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/</guid>
		<description><![CDATA[Cause : A single bar (&#124;) was interpreted as an attempt to specify concatenation, but the concatenation operator is a double bar (&#124;&#124;).
Action : Enter a double bar (&#124;&#124;) for concatenation or remove the single bar (&#124;) if concatenation was not intended.
Share This
Related PostORA-01002: fetch out of sequenceORA-01001 : invalid cursorORA-01000 : maximum open cursors [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : A single bar (|) was interpreted as an attempt to specify concatenation, but the concatenation operator is a double bar (||).<br />
<strong>Action</strong> : Enter a double bar (||) for concatenation or remove the single bar (|) if concatenation was not intended.</p>
<p class="akst_link"><a href="http://orafind.com/?p=489&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_489" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-00995 : missing or invalid synonym identifier</title>
		<link>http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/</link>
		<comments>http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:05:01 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[missing or invalid synonym identifier]]></category>

		<category><![CDATA[ora 995]]></category>

		<category><![CDATA[ORA-00995]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/</guid>
		<description><![CDATA[Cause : In a CREATE or DROP SYNONYM statement, the synonym name was either missing or invalid.
Action : Check syntax and spelling. A valid synonym name must be specified immediately following the keyword SYNONYM in both statements. Valid synonym names must begin with a letter, consist of alphanumeric characters
and the special characters $, _, and [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : In a CREATE or DROP SYNONYM statement, the synonym name was either missing or invalid.<br />
<strong>Action</strong> : Check syntax and spelling. A valid synonym name must be specified immediately following the keyword SYNONYM in both statements. Valid synonym names must begin with a letter, consist of alphanumeric characters<br />
and the special characters $, _, and #, and be less than or equal to 30 characters.<br />
They may not be reserved words.</p>
<p class="akst_link"><a href="http://orafind.com/?p=488&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_488" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00994-missing-option-keyword/" title="ORA-00994 : missing OPTION keyword">ORA-00994 : missing OPTION keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ORA-00994 : missing OPTION keyword</title>
		<link>http://orafind.com/oracle-error/ora-00994-missing-option-keyword/</link>
		<comments>http://orafind.com/oracle-error/ora-00994-missing-option-keyword/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 06:04:20 +0000</pubDate>
		<dc:creator>ora-</dc:creator>
		
		<category><![CDATA[oracle error]]></category>

		<category><![CDATA[missing OPTION keyword]]></category>

		<category><![CDATA[ora 994]]></category>

		<category><![CDATA[ORA-00994]]></category>

		<guid isPermaLink="false">http://orafind.com/oracle-error/ora-00994-missing-option-keyword/</guid>
		<description><![CDATA[Cause : The keywords WITH GRANT were specified at the end of a GRANT statement without the keyword OPTION.
Action : Change the keywords WITH GRANT to the keywords WITH GRANT OPTION. Then retry the statement.
Share This
Related PostORA-01002: fetch out of sequenceORA-01001 : invalid cursorORA-01000 : maximum open cursors exceededORA-00999 : invalid view nameORA-00998 : must [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Cause</strong> : The keywords WITH GRANT were specified at the end of a GRANT statement without the keyword OPTION.<br />
<strong>Action</strong> : Change the keywords WITH GRANT to the keywords WITH GRANT OPTION. Then retry the statement.</p>
<p class="akst_link"><a href="http://orafind.com/?p=487&amp;akst_action=share-this"  title="E-mail this, post to del.icio.us, etc." id="akst_link_487" class="akst_share_link" rel="nofollow">Share This</a>
</p><h3>Related Post</h3><ul class="related_post"><li><a href="http://orafind.com/oracle-error/ora-01002-fetch-out-of-sequence/" title="ORA-01002: fetch out of sequence">ORA-01002: fetch out of sequence</a></li><li><a href="http://orafind.com/oracle-error/ora-01001-invalid-cursor/" title="ORA-01001 : invalid cursor">ORA-01001 : invalid cursor</a></li><li><a href="http://orafind.com/oracle-error/ora-01000-maximum-open-cursors-exceeded/" title="ORA-01000 : maximum open cursors exceeded">ORA-01000 : maximum open cursors exceeded</a></li><li><a href="http://orafind.com/oracle-error/ora-00999-invalid-view-name/" title="ORA-00999 : invalid view name">ORA-00999 : invalid view name</a></li><li><a href="http://orafind.com/oracle-error/ora-00998-must-name-this-expression-with-a-column-alias/" title="ORA-00998 : must name this expression with a column alias">ORA-00998 : must name this expression with a column alias</a></li><li><a href="http://orafind.com/oracle-error/ora-00997-illegal-use-of-long-datatype/" title="ORA-00997 : illegal use of LONG datatype">ORA-00997 : illegal use of LONG datatype</a></li><li><a href="http://orafind.com/oracle-error/ora-00996-the-concatenate-operator-is-not/" title="ORA-00996 : the concatenate operator is ||, not |">ORA-00996 : the concatenate operator is ||, not |</a></li><li><a href="http://orafind.com/oracle-error/ora-00995-missing-or-invalid-synonym-identifier/" title="ORA-00995 : missing or invalid synonym identifier">ORA-00995 : missing or invalid synonym identifier</a></li><li><a href="http://orafind.com/oracle-error/ora-00993-missing-grant-keyword/" title="ORA-00993 : missing GRANT keyword">ORA-00993 : missing GRANT keyword</a></li><li><a href="http://orafind.com/oracle-error/ora-00992-invalid-format-for-revoke-command/" title="ORA-00992 : invalid format for REVOKE command">ORA-00992 : invalid format for REVOKE command</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://orafind.com/oracle-error/ora-00994-missing-option-keyword/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
