DBA Data[Home] [Help]

APPS.MSC_ATP_24X7 dependencies on V$TIMER

Line 295: from v$timer;

291: -- Get Downtime Start Time
292: begin
293: select hsecs / 100
294: into l_downtime_start
295: from v$timer;
296: exception
297: when others then
298: conc_log ('Unable to access timer');
299: conc_log ('Error is: ' || sqlerrm);

Line 378: from v$timer;

374: -- Get Downtime Start Time
375: begin
376: select hsecs / 100
377: into l_downtime_end
378: from v$timer;
379: exception
380: when others then
381: conc_log ('Unable to access timer');
382: conc_log ('Error is: ' || sqlerrm);

Line 578: from v$timer;

574: -- Get Start Time
575: begin
576: select hsecs / 100
577: into l_timer_start
578: from v$timer;
579: exception
580: when others then
581: conc_log ('Unable to access timer');
582: conc_log ('Error is: ' || sqlerrm);

Line 633: from v$timer;

629: -- Get End Time
630: begin
631: select hsecs / 100
632: into l_timer_end
633: from v$timer;
634: exception
635: when others then
636: conc_log ('Unable to access timer');
637: conc_log ('Error is: ' || sqlerrm);