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 |
I have to run a select query on DB2 table and show its data on CICS map. Please tell me.
which cics service transaction is used to gain accessibility to cics control tables? Mention the one that has the highest priority.?
what is an MDT in cics
what is mapfail and when we get this error? during send map or receive map?
Define an aey9 abend?
how to get 'time stamp' in cics prgms ,what is the syntax.
Why doesn?t CICS use the Cobol Open and Close statements ?
What is the use of tdq and tsq?
What is the function of the LOAD command?
What happens if i move +1 (instead of -1) to field+L in CICS? Will it show compile time error?
what is difference between call and link ?
mention the option (along with argument type) used in a cics command to retrieve the response code after execution of the command?