how to create gdg with out using idcams utility
Answers were Sorted based on User's Feedback
In ISPF go to p.3.2 there VSAM utilities there give v in command prompt and enter left side give 1 to define and right side give 4 gdg and hit enter give GDG name,limit,scratch,empty after that press enter u ll get pgm in command prompt type execute now go to p.3.4 and check ur GDG.......
| Is This Answer Correct ? | 19 Yes | 0 No |
Answer / mahesh.pothula
through fhe ispf panel we can create gdg base.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / baig
Index for a GDG can be created using utility IEHPROGM.
sYNTAX: BLDG INDEX=DATASET NAME, ENTRIES=NO OF VERSIONS OF
DATASETS, DELETE.
eX: BLDG INDEX=XM77.GDG.DS, ENTRIES=5, DELETE
Deleting Index of GDG using IEHPROGM
DLTX INDEX=dataset name.
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / jagan
There is a separate utility GDGBLG . You can try it to
create a new GDG base and for creating new generations.
TSO GDGBLD in the command prompt.
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / swati gaikwad
//jstep01 exec pgm=idcams
//SYSPRINT DD SYSOUT=*
//SYSIN DD*
DEFINE GDG-
(NAME(<GIVE THE NAME YOU WANT>)-
LIMIT(10)- /*GIVE LIMIT WHATEVER YOU WANT
NOEMPTY-
SCRATCH)
/*
| Is This Answer Correct ? | 4 Yes | 7 No |
Answer / vimal raj
using idcams, EXEC= IDCAMS just allocating gdg with limit
and then creating their corresponding version
| Is This Answer Correct ? | 2 Yes | 16 No |
//ERFDS JOB //STEP1 //STEP2 //STEP3...COND=(4,LT) //STEP4 1.CONDITION IN STEP3 REFERS TO WHICH STEP'S RETURN CODE (STEP1 OR STEP2)? 2.IN ABOVE PROGRAM IF CONDITION SATISFIES IN STEP3 WHICH STEPS WILL EXECUTE?? AND WHY? IF CONDITION IN STEP3 SATISFIES
proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code
Do we need to code DCB parameters when using DISP position as MOD?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
What is the use of the utility DFSRRC00 in the JCL?
In sms datasets, what is the function of the dd avgrec keyword?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above
What will happen if two JOB statements are mentioned in an JCL continuously.
what is the default region size if I dont specify region parametre in my job card ( I know that if I specify region=0k or 0M, then the job will occupy all he available resources at the time of job execution), but I want to know the defult value for "region" paramatre.
There are two steps in a JCl, the first one generates a report while the second step send an email saying the report has been generated, but the second steps should only be executed when the report file is non-empty. How can it be acheived. We may include steps in between.