各位大神们,我想在oracle后台执行多个存储过程,请问要怎么做呢?_百度...
发布网友
发布时间:2022-04-26 18:46
我来回答
共2个回答
热心网友
时间:2022-04-13 22:22
你是需要定时执行吗?你说的后台执行应该就是存储过程自动执行吧:
1、定时执行你可以创建job,可以定时每个多久执行一次存储过程(job中可以执行多个存储过程,只需要使用‘;’隔开);
2、你可以将你所有的存储过程打包(pkg);
热心网友
时间:2022-04-13 23:40
create or replace procere execmorepro as
begin
procere1;
procere2;
procere3;
procere4;
end;
如果要自动执行,再加个job,执行这个过程就行了。