What is the purpose of the PARM keyword in the EXEC statement?
Answers were Sorted based on User's Feedback
Answer / venkatachalam
Passing the input to the COBOL Program. The length of the
parm parameter size only 100 characters.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / guest
The value after the PARM= specifies control information to
be passed to the executing program of the job step.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kranthi kumar m
parm is a activity level parameter,it i used to pass maximum
100 characters of data from jcl to cobol program,and it is
mainly used when we want to pass date n time..... if we want
to pass large volumes of data we dn't use pam parameter
instead of it we use 'sysin dd*'
| Is This Answer Correct ? | 1 Yes | 0 No |
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.
what is the use of IEBGENER utility?
db2 maintains information about the data... a.in tables. b.in a set of tables known as db2 catalog. c.in db2 database. d.none of the above. 1 What is the maximum number of tables that can be stored on a Partitioned Table Space ? 1 what is contained in the DB2 node lock file? A) data base names B) data base users names C) license keys D) server names Accenture 5 Can a primary key have null values? If we try to insert a null value in a primary key column, will it work or give an error code? 6 When you are working with the project after coding what will u do? Like what type of documents u will prepare? How will u do testing? 2 how to delete perticular row from table for ex. how you will delete 3rd row from table please answer THANKS IN ADVANCE IBM 7 max number of columns in a db2 table? 6 What is package versioning? Please give an example. 1 What is the picture clause of the null indicator variable? 6 How do you filter out the rows retrieved from a Db2 table ? 1 What is DB2 (IBM Database 2)? 3 Can any one tell me about Restart logic in DB2.
Is it possible to code instream data in a PROC?
i have a jcl in which 4 & 5 step creates a new generation. 4th step output is as input for the 6th step & 5th step output is used as input in the 7th step. How they are refered as in the 6th & 7th steps? If the job abends in 6th step then how the 5th step output is refered in 7th step?
What is RESTART? How is it invoked?
How I sort the records in a file and copy the first 10 records to another file
i have 3 steps in my jcl, where i want to run only one step at a time depending on the variable. How should i give the condition statement... I have tried this with two steps which is working but not able to add condn for the 3rd step. can anyone help me... I want to know the cond stmt which i can code in step 3 and step4, so that only either step2 or step3 or step4 executes
wht r different types of sort fields in jcl ?
wht is step lib n job lib ? where can we code joblib n steplib ?
01 A. 10 B pic X(10). move spaces to A. move spaces to B. output in A & B
How to submit jcl through a cobol program?