How many types of sorts are there in cobol?
Answer Posted / ghjkkj
Internal sort is handled by a cobol program using i/p file,work file and o/p file.
Internal sort is when you do any processing you need to recompile the cobol program
External sort is performed through jcl where you provide SORTIN and SORTOUT datasets and its easier to perform this sort as any changes, will require only submitting the jcl.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
i want a program using by if, evaluate , string, unstring, perform, occurs?
What are different data types in cobol?
What is the difference between comp and comp-3?
Why occurs cannot be used in 01 level in COBOL?
Explain sorting techniques in cobol program? Provide the sort file definition, the sort statement, its syntax and meaning
Which division and paragraphs are mandatory for a COBOL program?
What is the difference between next sentence and continue in cobol programing language?
) how do u code after getting data?
What are literals?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is Pic 9v99 Indicates in COBOL?
What are INPUT PROCEDURE and OUTPUT PROCEDURE?
How do you reference the following file formats from cobol programs?
If you are current on the owner of a set, what is the difference between an obtain next and obtain first? Actually in which topic will we use dis???Plz explain it clearly
I have File 1 occurs 5 times with Employee-ID,Employee-Name,Employee-Dept (EEE and MECH). I have File 2 occurs 10 times with Employee-ID,Employee-Name,Employee-Dept (EEE,CIVIL,CHEMICAL and MECH). In FIle 1 and FIle 2 , for matching Employee-DEPT (Only MECH) , we need to move entire records from file1 to file 2. We should not use 2D array. Your help is needed here.