How do you delete Item 3 in a five-item TSQ?
Answers were Sorted based on User's Feedback
Answer / dolly
We cannot delete individual items from a TSQ.
EXEC CICS DELETEQ
TS QUEUE(name of the queue)
END-EXEC
The above command will delete the entire TS QUEUE
Is This Answer Correct ? | 18 Yes | 1 No |
We cannot delete individual items from a TSQ. When a
DELETEQ command is issued , all the elements in the TSQ is
being deleted
Is This Answer Correct ? | 14 Yes | 2 No |
Mention the option used in a cics command to retrieve the response code after execution of the command?
What is the other way of terminating a transaction?
What does it mean when EIBCALEN is equal to zeros?
6 Answers ADP, IBM, L&T, Satyam, TATA,
What is the difference between FSET and FRSET?
What is the comaera (communication area)?
How can you access esds files from cics?
What is the use of mdt (modified data tag)?
WHEN I TRIGGER A TRANSACTION (COBOL-CICS-DB2 PROGRAM)WHAT IS THE EXECUTION? (I MEAN THE PURPOSE OF CICS-CONTROL TABLES &CONTROL PROGRAMS)
Sync points cannot be requested by the application programs? State true or false
Explain the function of the load command?
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program
what is the purpose of using link ?