Where the Plan is located in CICS-DB2
Answers were Sorted based on User's Feedback
Answer / lakshmisudha
plan is stored in RCT(Resource Control Table)
| Is This Answer Correct ? | 0 Yes | 1 No |
Explain how will you differentiate between an internal and an external sort, the pros and cons, internal sort syntax etc
Can we move X(9) to 9(9). If yes what are the ways for doing this?
How do you submit JCL via a Cobol program?
How to delete a front spaces in a data-name/variable in cobol Example:- 01 data-name-1 PIC x(20) value " cobol language". 01 data-name-2 PIC x(20). MOVE data-name-1 to data-name-2. would like the value of data-name-2 is "cobol language".
consider the following FD FILE-1 01 REC-1 PIC X(80) ...... WORKING-STORAGE SECTION 01 W-REC PIC X(90) ........ PROCEDURE DIVISION FIRST-PARA ....... READ FILE-1 INTO W-REC AT END MOVE 1 TO EOF-FLAG which of the following is true with respect to the above? a.REC-1 will contain nothing and W-REC will contain the contains of the record read b.REC-1 and W-REC contain the same data c.syntex is invalid and error will occur d.REC-1 and W-REC must be of same size
01 A pic 9(100) find record length of it
Which division and paragraphs are mandatory for a COBOL program?
how do you reference the esds vsam file formats from cobol programs
I have a Main Program which is calling Sub-Program which is a DB2 pgm. What will happen if I am not closing the cursor used in the Sub-program? Please advise..
is this below syntax correct? CALL 'subprg' using A,B Please help
Minimum how many Number of Paragraphs are there in ID- Divison?
Which of the following characters is NOT valid in column 7? a. - b. \ c. * d. # e. $