Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Column log_id in USER_SCHEDULER_RUNNING_JOBS or ALL_SCHEDULER_RUNNING_JOBS

Sergey NavrotskiyMar 19 2013 — edited Mar 21 2013
I needed to make use of the log_id of USER_SCHEDULER_RUNNING_JOBS. I was surprised to find that it is not the number of integers. Not looking for a long time - probably in the source text of USER_SCHEDULER_RUNNING_JOBS or ALL_SCHEDULER_RUNNING_JOBS
bitand(j.running_slave, 18446744069414584320) / 4294967295
there is an error that should have been corrected as follows:
bitand(j.running_slave, 18446744069414584320) / 4294967296
Am I right?

While I was forced to use a workaround:
(Log_id * 4294967295) / (4294967295 + 1)

Thank you!

Edited by: sns on 20.03.2013 10:12
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 18 2013
Added on Mar 19 2013
2 comments
197 views