What CICS command would you use to read a VSAM KSDS
sequentially in ascending order?
Answer Posted / manish_cics
sequential access of VSAM file under CICS is
called "browsing". we 'll use this coomand::
EXEC CICS READNEXT
DATASET(NAME)/FILE(NAME)
INTO(DATA-AREA)
LENGTH(DATA-VALUE)
RIDFLD(DATA-AREA)
END-EXEC.
the READNEXT command is used to read a record of afile
sequentially forward .the STARTBR must ve been succesfully
completed prior to issuing the READNEXT command.
Is This Answer Correct ? | 6 Yes | 2 No |
Post New Answer View All Answers
Name the two types of transient data queues?
Explain the difference between link and xctl?
what are transient data sets defined to cics?
what are the reserved words for cics?
What is CICS ?
Can you define cemt?
what is effect on receive map when
What is commarea (communications area)?
Can you define bms?
What do you mean by CEMT?
Can you define temporary storage?
specify the requirements for automatic task initiation. (Mention the control table, it is entries and the corresponding procedure division cics command).?
How to get the cursor position when we receive a map?
mention the option (along with argument type) used in a cics command to retrieve the response code after execution of the command?
Explain the difference between a package and a plan. How does one bind 2 versions of a cics transaction with the same module name in two different cics regions that share the same db2 subsystem?