when will be use the tdq and tsq??
Answers were Sorted based on User's Feedback
Answer / aadish
A Transient Data Queue(TDQ) is an area that can be accessed
across CICS region and even by batch applications. In most
of the business models, all daytime CICS activities are read
and processed in batch in the night. The TDQs act as
temporary databases which hold these transaction details and
get deleted once read.They are read destructive.
A temporary storage queue(TSQ) can only be accessed by
programs and transactions from the same CICS region.They
cannot be accesed in batch. They can be read over and over
again unlike a TDQ. They are best used to transfer data
between multiple transactions in the same region.
| Is This Answer Correct ? | 38 Yes | 2 No |
Answer / bharani
While implementing Page-up and page-down logic, TSQ is very
useful, the reason behind is, it hold entire data even the
control is returned to CICS.
TDQ is useful when there is requirement for message routing
or printing of messages once the trigger level is reached
| Is This Answer Correct ? | 13 Yes | 1 No |
Explain the means of supporting pseudo conversation programming. (E.g. Storing and restoring of states)
What is a logical message in CICS?
What RCT Entries will you make for a CICS DB2 program??
Why do we need integrated cics translator?
How are screens created in cics
What is the difference between Re-Entrant and Quasi re entrant program?? By looking at the program how can you tell if its re- entrant or not??
What do the keywords MAPONLY and DATAONLY mean?
what are the two ways of breaking a cpu bound process to allow other task to gain access to cpu?
Can you use OCCURS in a BMS map? If you do, what are the issues related with its use?
What are all things you can do with CEDA?
What are the databases that CICS can access?
Can a CICS code be a part of a copybook? If so, then what are the outcomes after compilation?