ORA-24333: zero iteration count Proc /Sun Unix [message #180721] |
Wed, 05 July 2006 00:14 |
mymot
Messages: 225 Registered: July 2005
|
Senior Member |
|
|
HI,
my proc code execution is getting below error
ORA-24333: zero iteration count
Cause: An iteration count of zero was specified for the statement.
what is the possible solutions, if the count = 0 , to handle count = 0 in Pro C code.
Thanks
|
|
|
|
Re: ORA-24333: zero iteration count Proc /Sun Unix [message #180734 is a reply to message #180726] |
Wed, 05 July 2006 01:24 |
mymot
Messages: 225 Registered: July 2005
|
Senior Member |
|
|
Thanks Frank.
In order to avoid the error you should use "execute ( ) by oracle"
instead:
proc sql;
connect to oracle (user=scott pw=tiger);
execute (
create table newemp as select * from emp
) by oracle;
disconnect from oracle;
quit;
Above sample code is provided for ORA-24333 by ORACLE user on google. But i am nt sure how i can get benefit of it.
Cheers
[Updated on: Wed, 05 July 2006 01:25] Report message to a moderator
|
|
|