What are the CICS commands associated with temporary
storage queue processing?
Answers were Sorted based on User's Feedback
Answer / pavan
cics commands in tsq operations:
exec cics exec cics exec cics
writeq ts readq ts deleteq ts
queue(queue id) queue(queue id) queue(queue id)
from(ws-rec) into(ws-rec) end-exec.
item(itemno) item(itemno)
end-exec. end exec.
for rewrite same like write but we are giving the item no
manually.
item no its a working-storage section vriable.
| Is This Answer Correct ? | 10 Yes | 0 No |
Answer / naren
EXEC CICS
ENQ RESOURCE('TSQ NAME')
END-EXEC.
EXEC CICS
DNQ RESOURCE('TSQ NAME')
END-EXEC
THE ENQ COMMAND IS USED TO HOLD THE QUEUE, SO THAT IT CAN
BE USED BY ONLY ONE TASK....NO SHARING WILL BE ALLOWED TO
OTHER TASKS...
THE DNQ COMMAND RELEASES THE HOLD...
| Is This Answer Correct ? | 5 Yes | 4 No |
What is the difference between getting the system time with EIBTIME and ASKTIME command?
what is partial serch analysys in cics?
What are the situations under which NEWCOPY is required ?
Which of the following commands, when issued by 2 different programs running at the same time, will prevent simultaneous use of resource 'SINGLE'?
What is the purpose of the Program List Table?
In a CICS program, how will you read a VSAM file?
What is the difference between using the READ command with INTO option and SET option?
Can you use OCCURS in a BMS map? If you do, what are the issues related with its use?
Kindly specify the pic clause for the data type of length option field type of data fields?
Explain the difference between dfhcommarea and tsq?
What is the attribute byte?
if i am having a cics,vsam and db2 programs with each functions and i want that each function on screen?