InterviewSolution
Saved Bookmarks
| 1. |
How Did You Refresh A Vsam File And How Frequently You Do It ? |
Answer»
Step 1: Deleting the existing VSAM file: Step 2: DEFINE VSAM-FILE(COND=(0,LT,STEP1) Return-code = 8 when the file that is trying to delete does not exist. Utilize the command VERIFY in TSO Step 1: Deleting the existing VSAM file: IF LASTCC =8 ; SET MAXCC=0 Step 2: DEFINE VSAM-FILE(COND=(0,LT,STEP1) Return-code = 8 when the file that is trying to delete does not exist. Utilize the command VERIFY in TSO |
|