command to reset the datastage job from out side
-
dsjob - mode 'RESET'
-
dsjob -run -mode 'RESET'
-
dsjob - mode 'SET'
-
dsjob -run -mode 'SET'
The dsjob command with -run and -mode RESET is the correct syntax for resetting a Datastage job from outside the Director client. Option A is incomplete - it lacks the -run flag. Option C incorrectly uses SET instead of RESET. Option D uses SET which is for different purposes.
To reset a DataStage job from outside, you can use the following command:
B) dsjob -run -mode 'RESET'
Explanation:
Option B) dsjob -run -mode 'RESET' is the correct answer.
The "dsjob" command is used to perform various operations on DataStage jobs. The "-run" flag is used to run a job, and the "-mode 'RESET'" option is used to reset the job.
By running the command "dsjob -run -mode 'RESET'", you can reset the DataStage job from outside. This will reset the job's status and clear any previous run information, allowing you to start the job fresh.
Therefore, the correct answer is B) dsjob -run -mode 'RESET'.