`

DB ORACLE - PLSQL call procedure

阅读更多
How to call procedure in PLSQL of Oracle DB.

Note: procedure name, the "()" is not requried

----------------------
Declare
Lcntr number;
LCalc number;
LCalcTmp Number;
Begin
FOR Lcntr IN 1..36
LOOP
     myprocedure;  -- procedure name, the "()" is not requried
     for LCalc in 1..100000000 -- sleep sometime
     LOOP
     LCalcTmp := LCalcTmp+1;
     END LOOP;
END LOOP;
end;
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics