What CICS command would you use to read a VSAM KSDS
sequentially in ascending order?

Answers were Sorted based on User's Feedback



What CICS command would you use to read a VSAM KSDS sequentially in ascending order?..

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

What CICS command would you use to read a VSAM KSDS sequentially in ascending order?..

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

What CICS command would you use to read a VSAM KSDS sequentially in ascending order?..

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 CICS command would you use to read a VSAM KSDS sequentially in ascending order?..

Answer / venkatesh

thanks for the valid info
could you please explain each parameter

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More CICS Interview Questions

what is an MDT in cics

4 Answers   Syntel,


What are the steps you go through to a create a BMS executable?

2 Answers   IBM,


Explain page up and page down logic along with coding logic in cics?

3 Answers   Wipro,


mention the option used in the cics read command to gain accessibility directly to the file i/o area. (Assume cobol-ii).?

0 Answers   IBM,


How is Telon(CA-Telon) used to build map?

0 Answers  






What is the command used to send a map to a terminal?

1 Answers  


Explain the purpose of the program list table?

0 Answers  


Can you define commarea?

0 Answers  


What is frset?

0 Answers  


How do you define Task Work Area?

1 Answers   IBM,


CICS provides an interface through which the all the DL/I services can be used under CICS(True or False).

1 Answers  


Explain how do you access the records randomly in tsq?

0 Answers  


Categories