What are the CICS commands associated with temporary
storage queue processing?

Answers were Sorted based on User's Feedback



What are the CICS commands associated with temporary storage queue processing?..

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

What are the CICS commands associated with temporary storage queue processing?..

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

Post New Answer

More CICS Interview Questions

why we code ACCUM parameter in cics send time

1 Answers  


How do you place the cursor on a particular position on the screen?

1 Answers   IBM,


Explain the difference between start and xctl?

0 Answers  


what are the differences between and exec cics xctl and exec cics start command?

0 Answers   IBM,


Can we define an alternate index on VSAM/RRDS ?

2 Answers   IBM,






What do the terms locality of reference and working set mean?

1 Answers  


How many ways to share information between different CICS programs?

3 Answers   Accenture,


Generally we check EIBALEN = 0 to decide whether first call or not. If I do not pass any value in the COMMAREA then EIBCALEN will be 0 even on second call. Now how can we say the program is called for the first time or second time?

3 Answers   Accenture,


What is meant by program reentrance?

1 Answers   Amdocs,


Which is the program which determines whether a transaction should be restarted ?

1 Answers  


Explain the difference between the into and the set option in the exec cics receive map command?

0 Answers  


What is the use of DSECT parameter in BMS?

2 Answers   IBM, Xansa,


Categories