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 the comaera?

0 Answers  


Explain the maps in cics?

0 Answers  


What are the two types of transient data queues?

1 Answers   IBM,


Can you use DYNAMIC calls in CICS ?

2 Answers   IBM,


What is the term conversational programs means?

0 Answers  






What is the use of the program list table?

0 Answers  


Given below code, find the value of 'x'. Perform s001-x thru s001-y. s001-x. add 1 to x . s001-1x. ------- . s001-y. perform s001-1y 10 times . s001-1y. perform s001-2y 10 times . s001-2y. perform s001-x 10 times .

1 Answers  


Specify cics transaction initiation process?

0 Answers  


I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, it showing it as Valid. But if I enter only one or two digits, zeros should be appended in the remaining places. For example: When u enter 1 in the screen the output should be 0001. When you enter 12, output should be 0012. How to achieve this in the program?

7 Answers  


What is transient data?

1 Answers   IBM,


What is interval control and what are some of the CICS commands associated with it?

2 Answers   IBM,


What is an AICA abend?

3 Answers   IBM, Xansa,


Categories