How do you read from a TSQ?
-
Permanent Storage read command
-
Transaction storage read command
-
Temp storage read command
-
None of the above
Reveal answer
Fill a bubble to check yourself
C
Correct answer
Explanation
Temporary Storage Queues (TSQ) in CICS are read using the temporary storage read command. TSQs provide temporary data storage that persists for the duration of the CICS session or until explicitly deleted, distinct from permanent storage solutions.
AI explanation
A Temporary Storage Queue (TSQ) in CICS is read using the temporary storage read command (e.g., EXEC CICS READQ TS), which retrieves a specific item from the queue by item number or pointer. This is distinct from transient data queues (read via READQ TD) and permanent storage, which isn't a CICS TS concept at all.