🎴 Flashcard Mode
PL/SQL and JCL Programming Quiz
Card1 / 20
Mastered0
Review0
QuestionClick to flip
If DISP=(,CATLG) which is the correct one?
AnswerClick to flip back
A
DISP=NEW,CATLG,CATLG
💡 Explanation:
DISP=(,CATLG) uses abbreviated syntax where the first parameter is omitted and defaults to NEW. The full form is DISP=NEW,CATLG,CATLG meaning: create new dataset, catalog on normal completion, and catalog on abnormal completion. OLD applies only to existing datasets, and DELETE would remove rather than catalog the dataset.