How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
No Answer is Posted For this Question
Be the First to Post Answer
Give some examples of command terminators?
how to know that the file has 300 records how to acess it?
if i am reading a file with some 50000 records and moving to a DB2 table and suddenly the program abends in between, is there anyway i could restart from the exact record at which the job failed once the program restarts.
How do you reference the following file formats from cobol programs?
i have the following varibles in the working storage 05 ws-A PIC X(30) VALUE 'ABCDEFGHIJKLMNOPQRESTUVWXYZ ' 05 WS-B REDEFINES WS-A 10 WS-B1 PIC X(10). 10 WS-B2 PIC 9(10). 10 WS-B3 PIC X(10). If I Display B1, B2 and B3 respectively, what is the value displayed in B2
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
What is a subscript ?
in how many mode we can open a file ?
What is Static,Dynamic linking ?
perform I from 0 by 1 until I=5?How maney times it will executes
input:-AABBCCDDEFGHIIJ output:- ABCDEFGHIJ Here in input we hav the duplicate characters i.e repeating characters.SO we should eliminate the duplicate characters and should display the output in ascending order.
how do you reference the fixed unblock file formats from cobol programs