what are difference organizations in cobol and access mode
in cobol? can you expalin what organization means while
declaring for ksds,esds,rrds?
Answer / ashok kumar reddy nagrimadugu
organization is a class which is to specify the type of file.
org'n can be sequential,indexed,relative.
acess mode is used to acess the records in
seqential,random,dynamic.
KSDS:org'n is indexed
ESDS:org'n is SEQUENTIAL
RRDS:org'n is ,relative.
| Is This Answer Correct ? | 17 Yes | 0 No |
Sending data is aplhabetic size 7 (value 3000), I wantated this value to be stored in database, which is defined as s9(7)v9(2)comp-3.
Give some examples of command terminators?
We are using the searching a table which is indexed, once the key is found, how can we get the occurance at which the key was found.
What is reference modification? What is UNION in sql and syntax? What is the difference between GDGS and VSAM? Which is prefer one? What is processing groups in endevor?
Difference between lrecl, blksize among PS, PDS issues? i.e in jcl at dcb
what is the minimum number of lines a Cobol program should have to successfully compile and run
) what is the difference between AID and HANDLE AID?
How do u debug a S0C7 abend? (aswered till we get the field which caused that) After knowing the field which caused that how do u know the record which caused that if it is in production env? (dumb) Ok let us assume that we got to know that 100th record caused that and I wanted to skip only 100th record from the file and process from 101th. How to do that in JCL using SORT? (tried with STOPAFT but ended up dumb when he said smthing else is ther)
i want to learn mainframe..any websites and material to learn from basic..? my mail id : rajeswaribe2010@gmail.com
How to display the index.(displacement from an array)
study the following 01 A PIC 99V0 VALUE 5 01 B PIC 9V9 VALUE 6 01 C PIC 99V9 VALUE 2.5 01 D PIC 99 VALUE 3 COMPUTE A ROUNDED B C = A+B*C/D ON SIZE ERROR PERFORM PRINT-ERROR the comments of A.B.C after execution of the above statement are a.A=10 B=0 C=10 b.A=10 B=9.9 C=9.9 c.A=10 B=0 C=9.9 d.A=10 B=6 C=10
In a program, there are 2 sections defined say SECTION-A and SECTION-B. There is a paragraph say CALC-INT in both the sections. If this para has to be called directly for SECTION-A, then PERFORM CALC-INT will not work as it is present in both sections. How the PERFORM statement has to be coded here?