Can we change the LIMIT of GDG?
Answers were Sorted based on User's Feedback
Answer / vinay sonar
Yes we can though i have been told no in my institude i
tried it personally using ALTER command.It works
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / vinoth kumar.k
Yes,its possible.Using IDCAMS we can alter the limit value
of Base GDG.
Here the systax is,
//JOB STMT
//EXEC STMT
//SYSPRINT STMT
//SYSIN DD *
ALTER BASE-GDG-NAME -
LIMIT(10) /* NEW LIMIT VALUE*/
/*
//
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / amy
of course we can do it by IDCAMS utility...
//step1 exec pgm=idcams
//sysin dd *
alter gdg-name parameter,parameter
/*
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / suman
yes
//step1 exec pgm=idcams
//sysin dd *
define gdg
name(userid.source.invoice)
limit(10) max value of limit is=255
scarth/noscartch
empty/noempty
/*
//
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / balu
yes we can alter the limit of gdg, but with in the default
limit , but after the default limit it may not possible,
pls correct if i am wrong
| Is This Answer Correct ? | 1 Yes | 4 No |
Answer / krishna
We can change by using the IDCAMA alter command.
| Is This Answer Correct ? | 4 Yes | 9 No |
Can you code instream data in a PROC ?
what is static and dynamic call with examples?
Name the system library from which modules are retrieved at execution
What is the syntax of JCL statement?
We are aware of eliminating the duplicate records from outyput fiel using sort utility. Can we get the duplicate records in to another file in the Same sort utility?
What is concatenating?
Why we will create load module in PDS only, Why nt in PS?
what is pupose and meaning of the REGION keyword and what jcl statement is it associated with?
diff bw SB37,SD37,SE37 ?( bcz these 3 belongs Space related abends only)
There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?
Name some of the JCL statements that are not allowed in procs.?
My JOB contains three steps. //STEP1 EXEC PGM=ABC //STEP2 EXEC PGM=DEF //STEP3 EXEC PGM=GHI My Question is 1) I want to execute second step only. How will do. 2) Soppose U consider above three steps are in PROC steps and I want execute the PROC second step only? How to execute the second step only. During exection time its creating any ABEND? Please let me know..........