What CICS command would you use to read a VSAM KSDS
sequentially in ascending order?
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 |
What is the significance of RDO?
How and where is the TWA size set? .
What is the difference between using the READ command with INTO option and SET option?
Can you define attribute byte?
Hai I have a VSAM file and there are two CICS pgms A and B both intends to update the file. How to code the program so that it does not under go a dead lock situation.
What is Communication Area?
What is task control and what are the CICS commands associated with it?
How can you start a CICS transaction other than by keying the Transaction ID at the terminal?
How many maps can we declare in a mapset.what is the limit.
Explain the difference between start and xctl?
Explain the difference between link and xctl?
what is 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?