我在oracle中创建了一个简单的过程.伪代码是
CREATE OR REPLACE
procedure update_summary
begin
delete from summary table;
make different calculations from different tables, insert values row by row in
summary table;
end;
Run Code Online (Sandbox Code Playgroud)
我希望这个程序每小时自动运行,因为如果我从我的应用程序的前端调用它,它安静的时间饥饿,用户认为该页面已被挂起.帮助将受到高度赞赏.