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 |
Name some common CICS service programs and explain their usage?
What is the CICS Command that is used for reading a record from the TDQ?
Mention the content that is present inside a PPT ?
How ENQ and DEQ used in CICS?
What will happen if some program tries to process a queue on which an ENQ command has been issued by some other program?
Highlight the difference between a symbolic map and physical map?
Explain the difference between a return with transid and xctl? For example program. A is issuing return with transid to program b. Program a. Is isssuing xctl to program b?
Explain the difference between getting the system time with eibtime and asktime command?
i would like to practise some programs in code some cics programs plz send the programs
What CICS command would you use to read a VSAM KSDS sequentially in ascending order?
What is the syncpoint and its use?
With the use of an alternate index, how is a VSAM file accessed?