What CICS command would you use to read a VSAM KSDS
sequentially in ascending order?
Answers were Sorted based on User's Feedback
Answer / chudar
exec cics Startbr
dataset
ridfld()
getq
end exec
exec cics read next
dataset(name)
into(area)
length()
ridfld()
getq
end exec
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / lenin
The answer given by chudar is correct, but the GTEQ
parameter not required in READ NEXT statement.
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / rameshkumar.hk.
exec cics read
dataset(name)
into(area)
length()
ridfld()
getq
end exec
In connection with first answer above.
Will use only read option .startbr is used when u want to
read data dynamically.
| Is This Answer Correct ? | 2 Yes | 1 No |
What is the general Command format of CICS ?
What are the various types of accesses that can be allowed by the SERVREQ option of the DFHFCT?
Explain how do you set the mdt option to on status, even if data is not entered?
What is a transid?
What is an AEY9 abend ?
What is a Logical Unit of Work (LUW)?
How to implement function keys in cics ...Interview ask me there is requirement to include two function key in the program F1 and F2 Keys...when F1 key is press record should be inserted into database after reading the input file and when F2 is press ,record should be updated in databased...explain about the entire process including testing also..?please expain in step by step ?
1 Answers HeadStrong, Polaris,
What does the following transactions do?
What is the option that is used to erase all unprotected fields during a SEND MAP operation?
What are the six different types of argument values in COBOL that can be placed in various options of a CICS command?
Can you define multiple maps in a BMS mapset?How,can anybody sent with syntax?
what is the difference between task and transaction in cics?