/ Published in: SQL
usefull if you don't have the permission to directly alter the procedure
Expand |
Embed | Plain Text
DECLARE l_var PLS_INTEGER; BEGIN FOR i IN 1 .. 500 LOOP SELECT myseq.NEXTVAL INTO l_var FROM DUAL; END LOOP; END;
You need to login to post a comment.
