if you give cylinder(1,1)how many cylinders it will be allocate?
Answers were Sorted based on User's Feedback
Answer / nag(igate)
this is VSAM question.
the maximum extents to secondary is depend on the files
used:
For sequential: 15
for VSAM : 123
in this case the answer is : 1+1*123=124 cylinders
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nagaraj ramamoorthy
it depends based on the size of the file.
when the dataset is created, 1 cylinder(primary quantity)
will be allocated. When the primary quantity is utilised
completely then the secondary quantity will be extended 1
cylinder. likewise it will extend 16 secondary extends for
seq files..
| Is This Answer Correct ? | 2 Yes | 1 No |
i have mainprogram and subgram...if i compile mainprogram without stop run..what will u get in compilation time?
What is the difference between Call and a Link?
wht happens if we dnt give scope terminator ?
The below is the declaration for a variable ws 01 ws pic 9(3). if you want to insert space how will you do that. in which level u should do it
I have two sequential files, FILE-1 and FILE-2. FILE-1 contains 2 columns(A,B) and FILE-2 contains 3 columns (C,D,E).I want an output file, FILE-3 which has all five columns with duplicates eliminated from column A.
HOW WE WILL SORT THE ARRAY WHICH IS GOING TO USE FOR SEARCH ALL?
i have n records in one file and in this file there is some fields and i want to count that how many sharma in my file so plz give the coding that how we read sharma ?
What is the difference between SEARCH and SEARCH ALL? What is more efficient?
. How do we cast a variable in COBOL
Hi , I am posting some questons which are asked at interview. These may help u for ur interview... what is static and dynamic call?
There is a production file which has millions of records in it.The program that uses it ends up with an SOC7 abend.It is sure that the abend is due to some invalid data in the file.Is there any way to debugg the SOC7 abend with out giving displays? I need the record which is cause for the abend.
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?