 




<?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>IT Answers &#187; PL/SQL error messages</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/plsql-error-messages/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 21:33:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>SQL error SQL0204 while using scalar function calling RPGLE program</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sql-error-sql0204-while-using-scalar-function-calling-rpgle-program/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sql-error-sql0204-while-using-scalar-function-calling-rpgle-program/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 07:32:39 +0000</pubDate>
		<dc:creator>PG</dc:creator>
				<category><![CDATA[AS/400 - DDS]]></category>
		<category><![CDATA[AS/400 and SQL]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;ve created a sclar function in SQLRPGLE which will be calling a RPGLE program for processing. There are 2 functions in the SQLRPGLE program: one for handling character field and another for processing numeric fields. Character part is working fine, but if it processes numeric part (i.e. function name fnScrmbleN), program is showing error SQL0204 [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;ve created a sclar function in SQLRPGLE which will be calling a RPGLE program for processing. There are 2 functions in the SQLRPGLE program: one for handling character field and another for processing numeric fields. Character part is working fine, but if it processes numeric part (i.e. function name fnScrmbleN), program is showing error SQL0204 i.e. FNSCRMBLEN in *LIBL type *N not found.<br/><br/> Kindly help and suggest what could be the reason. I&#8217;m attaching code below for your reference: 1) If FLFLDT = &#8216;C&#8217; (character), field FLFLD will have name of a character field 2) If FLFLDT = &#8216;N&#8217; (numeric), field FLFLD will have name of a character field 3) Field FLSENC will always have numeric field name.<br/><br/>  <br/><br/>
<pre><br/><br/>      4359      FAGP995    IP   E           K DISK                                                                         05/09/09     4301      D*                                                                                                         05/03/21     4310      D G_First         S               N                                                                        05/09/06     4321      D G_Sql           S           1024A   INZ                                                                  05/09/06     4324 13266D G_CMDNAM        S            150A                                                                        09/08/12     4325 13266D G_CMDLEN        S             15P 5                                                                      09/08/13     4326 13266D*                                                                                                         09/08/12     4327 13226D QCMDEXC         PR                  EXTPGM('QCMDEXC')                                                    09/08/12     4328 13266D CMD                          150A                                                                        09/08/13     4329 13266D CMDLEN                        15P 5                                                                      09/08/13     4330 13266D*                                                                                                         09/08/13     4331 13226D AG995C          PR                  EXTPGM('AG995C')                                                     09/08/13     4332 13266D AG995D          PR                  EXTPGM('AG995D')                                                     09/08/13     4333 13266D*                                                                                                         09/08/13     4334      D* Int value for Chars                                                                                     05/08/19     5304      I*                                                                                                         05/07/29     5305      IFMFILFLD                                                                                                  05/07/29     5306 13226I*                                         FLFILE        L1                                                09/08/11     5307 13226I                                          FLBATNO       L1                                                09/08/11     5308 13226I                                          FLFILE        L2                                                09/08/11     5310      C**================================================================**                                      05/07/29     5311      C*  PARAMETER LIST                                                  *                                      05/07/29     5312      C**================================================================**                                      05/07/29     5313      C*                                                                                                         05/07/29     5400      C**================================================================**                                      04/04/16     5500      C*  MAIN PROGRAM                                                    *                                      04/04/16     5600      C**================================================================**                                      04/04/16     7200      C*                                                                                                         04/04/16     7201       /free                                                                                                     05/07/29     7202 13266   // If level break L1 on FLBATNO is on                                                                   09/08/11     7203 13266     if *inl1;                                                                                             09/08/11     7204 13266       // Clear File AGP995C                                                                               09/08/13     7206 13266            G_CMDNAM = 'CLRPFM AGP995C';                                                                   09/08/12     7208 13266            G_CMDLEN = 14;                                                                                 09/08/13     7210 13266            CALLP      QCMDEXC(G_CMDNAM : G_CMDLEN);                                                       09/08/13     7211 13266                                                                                                           09/08/13     7212 13266       // Call AG995C                                                                                      09/08/13     7213 13266            CALLP      AG995C();                                                                           09/08/13     7216 13266                                                                                                           09/08/13     7217 13266       // Clear File AGP995D                                                                               09/08/13     7218 13266            G_CMDNAM = 'CLRPFM AGP995D';                                                                   09/08/12     7219 13266            G_CMDLEN = 14;                                                                                 09/08/13     7221 13266            CALLP      QCMDEXC(G_CMDNAM : G_CMDLEN);                                                       09/08/13     7222 13266                                                                                                           09/08/13     7223 13266        // Call AG995C                                                                                     09/08/13     7224 13266            CALLP      AG995D();                                                                           09/08/13     7225 13266     endif;                                                                                                09/08/13     7226 13266                                                                                                           09/08/13     7229         // init vars at detail level break                                                                      05/07/29     7231 13266     if *inl2;                                                                                             09/08/11     7232               G_First = *off;                                                                                   05/09/06     7233               G_Sql = 'Update ' + %trim(FLFILE) + ' set' ;                                                      05/09/06     7234           endif;                                                                                                05/07/29     7235         // build sql                                                                                            05/07/29     7236               if G_First = *on;                                                                                 05/09/06     7237                  G_Sql = %trim(G_Sql) + ',';                                                                    05/09/06     7238               endif;                                                                                            05/09/06     7241 13266                                                                                                           09/08/13     7242 13266      // Process character fields                                                                          09/08/13     7243 13266         if FLFLDT = 'C';                                                                                  09/08/13     7244 13266               if FLSENC &lt;&gt; ' ' ;                                                                          09/08/13     7245 13266                  G_Sql = %trim(G_Sql) +  ' ' + %trim(FLFLD) +                                             09/08/13     7246 13266                          ' = fnScrmble(' + %trim(FLFLD) + ',  ' +                                         09/08/13     7247 13266                          %trim(FLSENC) + ')';                                                             09/08/13     7248 13266               else;                                                                                       09/08/13     7249 13266                  G_Sql = %trim(G_Sql) +  ' ' + %trim(FLFLD) +                                             09/08/13     7250 13266                  ' = fnScrmble(' +  %trim(FLFLD) + ',  0)';                                               09/08/13     7251 13266               endif;                                                                                      09/08/13     7252 13266         endif;                                                                                            09/08/13     7253 13266                                                                                                           09/08/13     7254 13266      // Process numeric fields                                                                            09/08/13     7255 13266         if FLFLDT = 'N';                                                                                  09/08/13     7256 13266               if FLSENC &lt;&gt; ' ';                                                                           09/08/13     7257 13266                  G_Sql = %trim(G_Sql) +  ' ' + %trim(FLFLD) +                                             09/08/13     7258 13266                          ' = fnScrmbleN(' + %trim(FLFLD) + ',  ' +                                        09/08/13     7259 13266                          %trim(FLSENC) + ')';                                                             09/08/17     7261 13266               else;                                                                                       09/08/13     7262 13266                  G_Sql = %trim(G_Sql) +  ' ' + %trim(FLFLD) +                                             09/08/13     7263 13266                          ' = fnScrmbleN(' +  %trim(FLFLD) + ',  0)';                                      09/08/17     7265 13266               endif;                                                                                      09/08/13     7266 13266         endif;                                                                                            09/08/13     7267               G_First = *on;                                                                                    05/09/06     7268       /end-free                                                                                                 05/07/29     7269      C*                                                                                                         05/07/29     7270 13266C*L1                 EXSR      SRExcUpd                                                                    09/08/11     7271 13266CL2                 EXSR      SRExcUpd                                                                     09/08/11     7272      CLR                 EXSR      SRLastRec                                                                    05/09/09    12001      C**************************************************************************                                05/07/29    12002      C* SrExcUpd - Execute Update SQL                                                                           05/07/29    12003      C**************************************************************************                                05/07/29    12004      C     SrExcUpd      BEGSR                                                                                  05/07/29    12005      C*                                                                                                         05/07/29    12100      C/Exec SQL                                                                                                 05/07/29    12200      C+                   Prepare DynUpdStm From :G_Sql                                                         05/09/06    12300      C/End-Exec                                                                                                 05/07/29    12400      C/Exec SQL                                                                                                 05/07/29    12500      C+                   Execute DynUpdStm                                                                     05/07/29    12600      C/End-Exec                                                                                                 05/07/29    12700      C*                                                                                                         05/07/29    12800      C                   ENDSR                                                                                  05/07/29    12900      C**************************************************************************                                05/09/09    13000      C* *INZSR - Initialization                                                                                 05/09/09    13100      C**************************************************************************                                05/09/09    13200      C     *INZSR        BEGSR                                                                                  05/09/09    13300      C*                                                                                                         05/09/09    13400      C/Exec SQL                                                                                                 05/09/09    13501 13226C+                   create function fnScrmble(char(100), decimal(10,0))                                   09/08/13    13502 13226C+                     returns char(100)                                                                   09/08/13    13503      C+                     language rpgle                                                                      05/09/09    13504      C+                     external name AG995A                                                                05/09/09    13505      C+                     deterministic                                                                       05/09/09    13506      C+                     no sql                                                                              05/09/09    13507      C+                     no external action                                                                  05/09/09    13508      C+                     parameter style SQL                                                                 05/09/09    13509      C+                     allow parallel                                                                      05/09/09    13600      C/End-Exec                                                                                                 05/09/09    14000      C*                                                                                                         05/09/09    14001 13226C/Exec SQL                                                                                                 09/08/12    14003 13226C+   create function fnScrmbleN(decimal(15,5), decimal(10,0))                                              09/08/17    14004 13226C+                     returns decimal(15,5)                                                               09/08/13    14005 13226C+                     language rpgle                                                                      09/08/12    14006 13226C+                     external name AG995B                                                                09/08/12    14007 13226C+                     deterministic                                                                       09/08/12    14008 13226C+                     no sql                                                                              09/08/12    14009 13226C+                     no external action                                                                  09/08/12    14010 13226C+                     parameter style SQL                                                                 09/08/12    14011 13226C+                     allow parallel                                                                      09/08/12    14012 13226C/End-Exec                                                                                                 09/08/12    14013      C*                                                                                                         09/08/11    14100      C                   ENDSR                                                                                  05/09/09    14101      C**************************************************************************                                05/09/09    14102      C* SRLastRec - At Last Record                                                                              05/09/09    14103      C**************************************************************************                                05/09/09    14104      C     SRLastRec     BEGSR                                                                                  05/09/09    14200      C/Exec SQL                                                                                                 05/09/09    14300      C+                   drop function fnScrmble                                                               05/09/09    14400      C/End-Exec                                                                                                 05/09/09    14500      C*                                                                                                         05/09/09    14501 13226C/Exec SQL                                                                                                 09/08/12    14502 13226C+                   drop function fnscrmbleN                                                              09/08/12    14503 13226C/End-Exec                                                                                                 09/08/12    14600      C                   ENDSR                                                                                  05/09/09                                    * * * *  E N D  O F  S O U R C E  * * * * </pre>
<p><br/><br/></p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sql-error-sql0204-while-using-scalar-function-calling-rpgle-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle stored procedure error with PL/SQL</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/oracle-stored-procedure-error-with-plsql/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/oracle-stored-procedure-error-with-plsql/#comments</comments>
		<pubDate>Thu, 14 May 2009 16:45:48 +0000</pubDate>
		<dc:creator>BrentSheets</dc:creator>
				<category><![CDATA[ORA-06502]]></category>
		<category><![CDATA[ORA-06512]]></category>
		<category><![CDATA[Oracle stored procedures]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We wrote a stored procedure, where we are passing input as VARCHAR2. And passing 73 characters string as input. Till here its fine. After giving few extra characters above this, it’s giving the error: ORA-06502: PL/SQL: numeric or value error ORA-06512: at &#8220;stored procedure name&#8221;, line 114 ORA-06512: at line 1&#8243; ORA-06502: PL/SQL: numeric or [...]]]></description>
				<content:encoded><![CDATA[<p>We wrote a stored procedure, where we are passing input as VARCHAR2. And passing 73 characters string as input. Till here its fine.</p>
<p>After giving few extra characters above this, it’s giving the error:</p>
<p>ORA-06502: PL/SQL: numeric or value error<br />
ORA-06512: at &#8220;stored procedure name&#8221;, line 114<br />
ORA-06512: at line 1&#8243;<br />
ORA-06502: PL/SQL: numeric or value error</p>
<p> <b>Moderator Note:</b> This is a submitted question.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/oracle-stored-procedure-error-with-plsql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PL/SQL error</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/plsql-error/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/plsql-error/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 08:32:07 +0000</pubDate>
		<dc:creator>Inprise</dc:creator>
				<category><![CDATA[ORA-08102]]></category>
		<category><![CDATA[Oracle development]]></category>
		<category><![CDATA[Oracle error messages]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi Experts, I am getting the follwoing error ORA-08102: index key not found, obj# 141051, file 28, block 15245 (2) I tried rebuild on that specific obj id still error persist wat are the possible causes and how to overcome please guide me]]></description>
				<content:encoded><![CDATA[<p>Hi Experts,</p>
<p>I am getting the follwoing error ORA-08102: index key not found, obj# 141051, file 28, block 15245 (2)</p>
<p>I tried rebuild on that specific obj id still error persist </p>
<p>wat are the possible causes and how to overcome<br />
please guide me</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/plsql-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQLERRM = ORA-06502: PL/SQL: numeric or value error: character string buffer too small</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/sqlerrm-ora-06502-plsql-numeric-or-value-error-character-string-buffer-too-small/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/sqlerrm-ora-06502-plsql-numeric-or-value-error-character-string-buffer-too-small/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 15:07:06 +0000</pubDate>
		<dc:creator>Bw7</dc:creator>
				<category><![CDATA[ORA-06502]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>
		<category><![CDATA[PL/SQL: numeric or value error]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[My procedure is shown below. When I execute it, it gives me the title error. Field3 is identified as a CLOB. Any / all help would be greatly appreciated. Running Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 CREATE OR REPLACE PROCEDURE xxx IS FileHandle SYS.UTL_FILE.FILE_TYPE; FileName VARCHAR2(2000); FileText VARCHAR2(2000); vField1 TABLE.field1%TYPE; vField2 TABLE.field2%TYPE; vField3 TABLE.field3%TYPE; [...]]]></description>
				<content:encoded><![CDATA[<p>My procedure is shown below. When I execute it, it gives me the title error. Field3 is identified as a CLOB. Any / all help would be greatly appreciated. Running Oracle Database 10g Enterprise Edition Release 10.2.0.3.0</p>
<p>CREATE OR REPLACE PROCEDURE xxx IS</p>
<p>FileHandle          	SYS.UTL_FILE.FILE_TYPE;<br />
FileName            	VARCHAR2(2000);<br />
FileText            	VARCHAR2(2000);</p>
<p>vField1		TABLE.field1%TYPE;<br />
vField2		TABLE.field2%TYPE;<br />
vField3		TABLE.field3%TYPE;</p>
<p>CURSOR TableCURSOR IS<br />
  SELECT *<br />
    FROM table;</p>
<p>BEGIN</p>
<p>  DBMS_OUTPUT.ENABLE(1000000);</p>
<p>  FileName   := &#8216;Output.txt&#8217;;<br />
  FileHandle := SYS.UTL_FILE.FOPEN(&#8216;PATH&#8217;, FileName, &#8216;w&#8217;);</p>
<p>  FOR trec in TableCURSOR LOOP</p>
<p>    vField1	:= trec.field1;<br />
    vField2	:= trec.field2;<br />
    vField3	:= trec.field3;</p>
<p>    FileText :=<br />
    vField1	 || &#8216;~&#8217; ||<br />
    vField2	 || &#8216;~&#8217; ||<br />
    vField3;</p>
<p>    SYS.UTL_FILE.PUT_LINE(FileHandle, FileText);</p>
<p>  END LOOP;</p>
<p>  SYS.UTL_FILE.FCLOSE(FileHandle);</p>
<p>EXCEPTION<br />
   WHEN OTHERS THEN<br />
      DBMS_OUTPUT.PUT_LINE (&#8216;Error on &#8216; || vField1 || &#8216; &#8216; || vField2 || &#8216; &#8216; || vField3);<br />
      DBMS_OUTPUT.PUT_LINE (&#8216;SQLCODE = &#8216; || to_char(SQLCODE));<br />
      DBMS_OUTPUT.PUT_LINE (&#8216;SQLERRM = &#8216; || substr(SQLERRM, 1,200));<br />
END;<br />
/<br />
SHO ERR</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/sqlerrm-ora-06502-plsql-numeric-or-value-error-character-string-buffer-too-small/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am getting ORA-01422: Exact fetch returns more than requested number of rows</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/i-am-getting-ora-01422-exact-fetch-returns-more-than-requested-number-of-rows/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/i-am-getting-ora-01422-exact-fetch-returns-more-than-requested-number-of-rows/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 10:56:38 +0000</pubDate>
		<dc:creator>Inprise</dc:creator>
				<category><![CDATA[INSERT statement]]></category>
		<category><![CDATA[ORA-01422]]></category>
		<category><![CDATA[Oracle development]]></category>
		<category><![CDATA[Oracle error messages]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>
		<category><![CDATA[SELECT statement]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[New Answer by Michael Tidmarsh]]></description>
				<content:encoded><![CDATA[New Answer by Michael Tidmarsh]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/i-am-getting-ora-01422-exact-fetch-returns-more-than-requested-number-of-rows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PL/SQL: How to check that parameter is case-sensitive?</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/how-to-check-parameter-is-case-sensitive/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/how-to-check-parameter-is-case-sensitive/#comments</comments>
		<pubDate>Fri, 12 Dec 2008 04:18:19 +0000</pubDate>
		<dc:creator>Inprise</dc:creator>
				<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PL/SQL block]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>
		<category><![CDATA[REGEXP]]></category>
		<category><![CDATA[Regular expressions]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi Experts how can i check the email id shud take only lower case in PL/SQL block i tried using vpos := REGEXP_LIKE(p_email_address,&#8217;[:lower:]&#8216;,&#8217;C'); as well vpos ;= REGEXP_LIKE(p_email_address,&#8217;[^[:lower:]]&#8217;,'C&#8217;) But both says wrong type as error and p_email_address is a parameter of procedure and i declared vpos as varchar2 please help me!!!!]]></description>
				<content:encoded><![CDATA[<p>Hi Experts</p>
<p>how can i check the email id shud take only lower case in PL/SQL block<br />
i tried using vpos := REGEXP_LIKE(p_email_address,&#8217;[:lower:]&#8216;,&#8217;C'); as well<br />
vpos ;= REGEXP_LIKE(p_email_address,&#8217;[^[:lower:]]&#8217;,'C&#8217;)</p>
<p>But both says wrong type as error and p_email_address is a parameter of procedure and i declared vpos as varchar2 </p>
<p>please help me!!!!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/how-to-check-parameter-is-case-sensitive/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Error(7,30): PLS-00103: Encountered the symbol &#8220;OUT&#8221; when expecting one of the following</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error730-pls-00103-encountered-the-symbol-out-when-expecting-one-of-the-following-default-character-the-symbol-was-substi/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/error730-pls-00103-encountered-the-symbol-out-when-expecting-one-of-the-following-default-character-the-symbol-was-substi/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 05:16:27 +0000</pubDate>
		<dc:creator>Inprise</dc:creator>
				<category><![CDATA[Oracle development]]></category>
		<category><![CDATA[Oracle SQL]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>
		<category><![CDATA[PLS-00103]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I am getting this eror when i compile my procedure with OUT Parameter ,it has got several OUT param ,but only this particular line pops up err msg Error(7,30): PLS-00103: Encountered the symbol &#8220;OUT&#8221; when expecting one of the following: := . ) , @ % default character The symbol &#8220;,&#8221; was substituted for &#8220;OUT&#8221; [...]]]></description>
				<content:encoded><![CDATA[<p>I am getting this eror when i compile my procedure with OUT Parameter ,it has got several OUT param ,but only this particular line pops up err msg</p>
<p>Error(7,30): PLS-00103: Encountered the symbol &#8220;OUT&#8221; when expecting one of the following:     := . ) , @ % default character The symbol &#8220;,&#8221; was substituted for &#8220;OUT&#8221; to continue. </p>
<p>Can someone help me on this ??</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/error730-pls-00103-encountered-the-symbol-out-when-expecting-one-of-the-following-default-character-the-symbol-was-substi/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Error(31,19): PLS-00103: Encountered the symbol &#8220;INTO&#8221; when expecting one of the following</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/error3119-pls-00103-encountered-the-symbol-into-when-expecting-one-of-the-following-from-the-symbol-from-was-inserted-before-into/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/error3119-pls-00103-encountered-the-symbol-into-when-expecting-one-of-the-following-from-the-symbol-from-was-inserted-before-into/#comments</comments>
		<pubDate>Wed, 03 Dec 2008 05:12:51 +0000</pubDate>
		<dc:creator>Inprise</dc:creator>
				<category><![CDATA[Oracle development]]></category>
		<category><![CDATA[Oracle SQL]]></category>
		<category><![CDATA[PL/SQL]]></category>
		<category><![CDATA[PL/SQL error messages]]></category>
		<category><![CDATA[PLS-00103]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I got this error while compiling a select stm and it s my pckg body however package parameter hav OUT as well IN .. Error(31,19): PLS-00103: Encountered the symbol &#8220;INTO&#8221; when expecting one of the following: . ( , % from The symbol &#8220;from was inserted before &#8220;INTO&#8221; to continue. Anbody able to help me [...]]]></description>
				<content:encoded><![CDATA[<p>I got this error while compiling a select stm and it s my pckg body however package parameter hav OUT as well IN .. </p>
<p>Error(31,19): PLS-00103: Encountered the symbol &#8220;INTO&#8221; when expecting one of the following:     . ( , % from The symbol &#8220;from was inserted before &#8220;INTO&#8221; to continue. </p>
<p>Anbody able to help me out ??</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/error3119-pls-00103-encountered-the-symbol-into-when-expecting-one-of-the-following-from-the-symbol-from-was-inserted-before-into/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/18 queries in 0.031 seconds using memcached
Object Caching 802/858 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-19 15:11:25 -->