Multiple choice technology databases

You need to invoke a job from the command line that is a multi-instance enabled. What is the correct syntax to start a multi-instance job?

  1. dsjob -run -mode NORMAL -instance <instance> <project> <job>

  2. dsjob -run -mode NORMAL -wait -instance <instance> <project> <job>

  3. dsjob -run -mode NORMAL <project> <job>.<instance>

  4. dsjob -run -mode MULTI <project> <job>.<instance>

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

The correct syntax for invoking a multi-instance job uses dot notation to specify the instance as part of the job name: dsjob -run -mode NORMAL .. The -mode NORMAL flag is required, and the instance identifier is appended to the job name with a dot separator. Options A and B incorrectly use -instance as a separate command-line parameter, while Option D uses a non-existent -mode MULTI flag.