In CICS/VSAM every file that is accessed should be defined
in FCT. we have CICS READ, WRITE, BROWSE commands for VSAM
files. How does it work with DB2 tables. It know it has to
do with the plan. Please expain with examples.
Answer / sandy
In the RCT give the TRANSID and Plan name which should be
accessed by the transaction id.
| Is This Answer Correct ? | 4 Yes | 0 No |
What is the linkage section?
What is the Linkage section? What is the Use and Why the parm length use alway "PARM-LENGTH PIC S9(4) or PIC S9 (4) COMP." any reason?.Please let me know any one... Cheers,Prasad
Suppose i have a variable with s9(18)v99 comp3 . what is the size of variable . If s9(18) comp3 is 10 bytes . There should be some difference between two allocations ? Thanks krishna chaitanya
how to display the dataset information?
In file1 have 80 records are like d1,d2,d3......D80. File2 have 1000records are like a1d1,a1d2,a3d3.....Etc. I want matching records in file3 ? Plse tell me the matching logic???I want answer only in cobol ?Not using any tool or jcl?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
If we put three reads in COBOL in the same para one after the other, to read a PS file,will it read the same record thrice or it will read three records sequentially? For example : Input File 01 02 03 Para 900 Read infile Display Infile rec Read infile Display infile rec Read infile Display infile rec. What will be the output?
can i use multiple when statements in search & search all ? justify ur answer?
State the various causes of s0c1, s0c5 and s0c7.
What is the difference between CONTINUE & NEXT SENTENCE ?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?
What is the LINKAGE SECTION used for?