oracle pl/sql ora-01722 error - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T20:04:34Zhttp://stackoverflow.com/feeds/question/968235http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/968235/oracle-pl-sql-ora-01722-error0oracle pl/sql ora-01722 errorOmnipresent2009-06-09T05:06:38Z2009-06-09T07:32:09Z
<p>I have a simple oracle statement in my procedure:</p>
<pre><code>update org.security_training_question a
set a.actv_indr = 'N' where a.qstn_id in (v_qstns_to_delete);
</code></pre>
<p>v_qstns_to_delete is a parameter being passed. It is a varchar2 field and a.qstn_id is a numeric field.</p>
<p>When calling the Stored Procedure, for v_qstns_to_delete I am passing the following String: "24, 43, 23, 44, 21".</p>
<p>When I run the statement output the stored procedure thenn it runs fine but when I run it as a stored procedure I get an error on the above line saying Invalid Number. </p>
<p>Any clue?</p>
http://stackoverflow.com/questions/968235/oracle-pl-sql-ora-01722-error/968261#9682611Answer by ammoQ for oracle pl/sql ora-01722 errorammoQ2009-06-09T05:14:43Z2009-06-09T05:14:43Z<p>You can't use a "in" clause with a variable like that. One way around it is</p>
<pre><code>declare stmt varchar2(4000);
begin
stmt := 'update org.security_training_question a set a.actv_indr = ''N'' where a.qstn_id in ('||v_qstns_to_delete||')';
execute immediate stmt;
end;
</code></pre>
http://stackoverflow.com/questions/968235/oracle-pl-sql-ora-01722-error/968659#9686591Answer by Vincent Malgrat for oracle pl/sql ora-01722 errorVincent Malgrat2009-06-09T07:32:09Z2009-06-09T07:32:09Z<p>Hi,</p>
<p>if <code>v_qstns_to_delete</code> is a varchar, you would need to convert it somewhat to let Oracle understand that there may be several items in it. One method would be to convert the string to a table of items.</p>
<p>Supposing <code>qstn_id</code> is a NUMBER column, you would:</p>
<pre><code>SQL> CREATE TYPE tab_number AS TABLE OF NUMBER;
2 /
Type created
SQL> CREATE OR REPLACE FUNCTION to_tab_number(p_in VARCHAR2,
2 p_separator VARCHAR2 DEFAULT ',')
3 RETURN tab_number AS
4 l_result tab_number := tab_number();
5 l_tail LONG := p_in;
6 BEGIN
7 WHILE l_tail IS NOT NULL LOOP
8 l_result.EXTEND;
9 IF instr(l_tail, p_separator) != 0 THEN
10 l_result(l_result.COUNT) := to_number(substr(l_tail,
11 1,
12 instr(l_tail, p_separator) - 1));
13 l_tail := substr(l_tail, instr(l_tail, p_separator) + 1);
14 ELSE
15 l_result(l_result.COUNT) := to_number(l_tail);
16 l_tail := NULL;
17 END IF;
18 END LOOP;
19 RETURN l_result;
20 END;
21 /
Function created
</code></pre>
<p>You could then convert a string to a table of number from SQL:</p>
<pre><code>SQL> SELECT * FROM TABLE(to_tab_number('24, 43, 23, 44, 21'));
COLUMN_VALUE
------------
24
43
23
44
21
</code></pre>
<p>To do a variable in-list:</p>
<pre><code>SQL> SELECT object_id, owner
2 FROM all_objects
3 WHERE object_id IN (SELECT column_value FROM TABLE(to_tab_number('18,19,20')));
OBJECT_ID OWNER
---------- ------------------------------
18 SYS
19 SYS
20 SYS
</code></pre>
<p>More on the same subject on <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11%5FQUESTION%5FID:210612357425" rel="nofollow">askTom</a>.</p>