jcs.job_parameter

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

Summary

Specification

Copy
function job_parameter(job_id in number,
parameter_name in varchar2)
    return varchar2

Get the value of a parameter of a job that is already submitted.

If the job has already started running, it will still reflect the value as it was passed to the job on job startup, even if the output value has changed: it always returns the "in" value.

Parameters

  • job_id - the ID of the job
  • parameter_name - the parameter of the job
  • returns varchar2 - the "in" value of the parameter

See Also