Scheduling concurrent Program

classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

Scheduling concurrent Program

satish
Dear Erman,

Can you please let us know what is the difference between "from the start of prior run" and "from the completion of prior run"

Thanks,
sri
Reply | Threaded
Open this post in threaded view
|

Re: Scheduling concurrent Program

ErmanArslansOracleBlog
Administrator
It is about rescheduling time.. It is about your decision about rescheduling.. (it has to be done from start or from completion of the prior run)

Suppose you schedule a request to run every 30 mins.

If you choose start prior run ->

t0 : first scheduled run begins
t0 + 30 mins : second scheduled  begins
and so on

If you choose completion of prior run ->

t0 : first scheduled run begins
t1 : first scheduled run completes
t1 + 30 mins : second scheduled  begins
and so on

You get it ?


Reply | Threaded
Open this post in threaded view
|

Re: Scheduling concurrent Program

satish
Thanks a lot erman,Its all clear now