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 eib?
The error code AEIV?
What is the size of commarea
Explain the difference between cics program control table (pct) and cics processing program table (ppt)?
Explain the mdt in cics?
An XCTL uses more CPU time than LINK (True or False)
What is meant by MDT? Furthermore, comment on FRSET and FSET ?
What is the difference between a RETURN with TRANSID and XCTL ?For example prog. A is issuing REUTRN with TRANSID to prog B. Prog A. is issuing XCTL to prog B?
What are the differences between and EXEC CICS XCTL and an EXEC CICS START command?
plz tell me abt PF key and PA keys
Give certain situations where NEWCOPY is obligatory?
In an on-line environment, how can you prevent more than one user from accessing the same Transient Data Queue at the same time?