InterviewSolution
| 1. |
What Is Use Of Disp Parameter In Dd Statement? |
|
Answer» The DISP PARAMETER is used to describe the status of the dataset, disposition at the end of the job STEP on normal and abnormal completion. DISP is not required in a DD statement only when the dataset gets created and DELETED in the same job step (LIKE the temporary datasets). Syntax − DISP = (status, normal-disposition, abnormal-disposition) The DISP parameter is used to describe the status of the dataset, disposition at the end of the job step on normal and abnormal completion. DISP is not required in a DD statement only when the dataset gets created and deleted in the same job step (like the temporary datasets). Syntax − DISP = (status, normal-disposition, abnormal-disposition) |
|