Explain the difference between an internal and an external
sort, the pros and cons, internal sort syntax etc.
Answer Posted / ajmal
I would like to add something to that.
External Sort's syntax
//SYSIN DD *
SORT FIELDS = (length of key, starting position of key,
CH, A/D)
/*
A - Ascending
D - Descending
Correct me if i'm wrong
| Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is link edit in cobol?
How do get the result of your program directly on your pc?
How to traceback if I am getting SOC7 or SOC4 abend? List down the steps
How do define dynamic array in cobol. how do you define single dimensional array and multidimensional array in your cobol?
how to refer the data field?
What is the difference between goback, stop run and exit program in cobol?
What is the default value(s) for an initialize? What keyword will allow for an override of the default?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
How can i load all the data from a file to Table (array) in cobol.How i manage the occurs clause with out reading the file.Any options avilable ? Please can any one help me it is urgent?
what is the difference between COBOL2 AND COBOL390?
How arrays can be defined in COBOL?
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 ......
Write a cobol program making use of the redefine clause.
Program A (Normal COBBAT) calling a B Program (DB2COBOL, COBBATDB which is using a VSAM file. its a dynamic call. How we will handle VSAM file decleration in our from JCL from where we are running A PGM. And should we have PLAN for A pGM also. if possible can some one post a sample JCL. Thanks for help in advance.
Write the code to count the sum of n natural numbers.