AuditJob - setDescription

AuditJob - setDescription

Description :

This command sets the description for a job. This command returns a handle to the updated job.

Return type : DBKey

Command Input :

Variable Name

Variable Type

Description

jobKey

DBKey

The handle to the Audit Job.

desc

String

The description for the job.

Example

The following example shows you how to get set the description for a job.

Script


# Name of the existing job. 

JOB_NAME="auditjob" 

# Job group in which Audit Job is stored. 

JOB_GROUP="/Workspace/Audits" 

# Get the Audit Job DBKey using the above information. 

JOB_DBKEY=`blcli AuditJob getDBKeyByGroupAndName $JOB_GROUP $JOB_NAME` 

# Set the Audit Job description. 

JOB_DBKEY=`blcli AuditJob setDescription $JOB_DBKEY "Oracle DB Audit"` 



Was this page helpful? Yes No Submitting... Thank you

Comments