Multiple choice technology

What is the command to be executed in DS Admin to get the job modifications details (if any)

  1. SELECT * FROM DS_JOBDETAILS WHERE JOB_NAME = ‘<job name>’

  2. SELECT * FROM DS_AUDIT WHERE INSTANCE = ‘<job name>’

  3. Both a and b

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To retrieve job modification details in DataStage Administrator, query the DS_AUDIT table filtering by the job name. The DS_JOBDETAILS table stores job definitions, not modification history. Only DS_AUDIT tracks changes.