Explain the difference between an internal and an external
sort, the pros and cons, internal sort syntax etc.
Answer Posted / vampire
Internal sort is manual sort use in cobol.
external sort is in jcl using inbuild program name called sort
ex
//step1 exec pgm=sort
synatx for internal sort
sort/merge sortfile on ascending/descending
key1/key2/key3,using file1/file2/input procedure is
section-1 giving file3/file4/output procedure is section-2
nobody can write syntax more than this.it is combination.
Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
i need a small 3d program using inline and outline.
What are 77 levels used for?
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
What is rmode(any) ?
What is an in line perform? When would you use it? Anything else you wish to say about it.
What is rmode(24)
) what is the difference between AID and HANDLE AID?
How to know whether the module is dynamical or statistical?
What is report-item in COBOL?
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 Pic 9v99 Indicates in COBOL?
what is amode(24), amode(31), rmode(24) and rmode(any)?
What is the difference between Call and a Link?
I have a File that has duplicate records. I need only those records that occur more than thrice.?
I have program P1 which calls file F1 which has 100 records and following structure 001 .................. 002 .................. 003 .................. 098 .................... 099 ................... 100 .................... Now I want to read these files and write these records in file F2 in following manner. 001 ...... 051 ..... 002 ...... 052 ..... 003 ...... 053 ..... .......... ....... .......... ....... .......... ....... 048 ........ 098 ...... 049 .......... 099 ....... 050 .... 100 ......