In an on-line environment, how can you prevent more than
one user from accessing the same Transient Data Queue at
the same time?
Answer Posted / saisankar
by providing loking mechanisms
we can lock the TDQ by using ENQ command.
eg:
EXEC CICS ENQ
RESOURCE('QID')
END-EXEC.
later we need to unlock it thru DEQ
eg:
EXEC CICS DEQ
RESOURCE('QID')
END-EXEC.
(any info mail me saisankar85@gmail.com)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
when a task suspends all the handle conditions via the push command, how does the task reactivate all the handle conditions?
Define transient data?
What is bms map?
What does the 'cemt:cics' transactions do?
Explain the system transid cemt?
What is CICS ?
What is a transid?
Explain the difference between a return with transid and xctl? For example program. A is issuing return with transid to program b. Program a. Is isssuing xctl to program b?
What are the recoverable cics resources?
Is length = 0 sufficient to ascertain that the field has been modified?
What is the procedure to read a statement from tsq?
Explain the logical message in cics?
what is an mdt (modified data tag)? Its menaing and use?
What is the difference between SEND MAP DATAONLY and SEND MAP MAPONLY ?
How can you use dynamic calls in cics?