jcs.job_status

on-site-related topic PL/SQL API jcs.job_status

Summary

Returns the status of a job.

The status indicates how the job is progressing. This string will be subject to translation to a local language in a later version. It is the recommended interface for showing the status to an end-user.

You can see all valid job statuses in jcs_job_statuses (not implemented).

Specification

Copy
function job_status(job_id in number)
    return varchar2

Parameters

  • job_id - the ID of the job
  • returns varchar2 - the status of the job

Transaction keyword

The transaction keyword defines how and/or when the changes are committed to the database. A definition of the various transaction keywords can be found on the jcs package summary page.

none

See Also