Have PL/SQL Outputs in Real Time

前端 未结 6 1847
陌清茗
陌清茗 2021-01-03 02:37

Is it possible to have Outputs from PL/SQL in real time? I have a pretty huge package that runs for more than an hour and I\'d like to see where the package is at a particul

6条回答
  •  北海茫月
    2021-01-03 02:41

    If your long-running job is processing a large number of fairly evenly sized tasks, you may find session longops a good way of monitoring the job progress, as well as allowing you to estimate how long the job will take to finish.

    DBMS_APPLICATION_INFO.set_session_longops

提交回复
热议问题