Presentation is loading. Please wait.

Presentation is loading. Please wait.

14-1 COBOL for the 21 st Century Nancy Stern Hofstra University Robert A. Stern Nassau Community College James P. Ley University of Wisconsin-Stout (Emeritus)

Similar presentations


Presentation on theme: "14-1 COBOL for the 21 st Century Nancy Stern Hofstra University Robert A. Stern Nassau Community College James P. Ley University of Wisconsin-Stout (Emeritus)"— Presentation transcript:

1 14-1 COBOL for the 21 st Century Nancy Stern Hofstra University Robert A. Stern Nassau Community College James P. Ley University of Wisconsin-Stout (Emeritus) John Wiley & Sons, Inc. 11th edition

2 14-2 Sorting and Merging Chapter 14

3 14-3 Chapter Objectives To familiarize you with How files may be sorted How to process file during SORT procedure –Before it is sorted –After it is sorted How to merge files

4 14-4 Chapter Contents SORT Feature Processing Data Before and/or After Sorting MERGE Statement

5 14-5 SORT Statement Common procedure for arranging records in specific order Then sequential batch processing performed Two techniques for sorting –Use sort utility separate from COBOL program –Use COBOL's SORT verb in program

6 14-6 SORT Statement SORT file-name-1 ONASCENDING KEY data-name-1 … DESCENDING USING file-name-2 GIVINGfile-name-3 Simplified Format

7 14-7 ASCENDING, DESCENDING Key To specify sequence for key field –ASCENDING: From lowest to highest –DESCENDING: From highest to lowest Sort key fields may be numeric or nonnumeric Alphanumeric fields sorted according to collating sequence (ASCII or EBCDIC) used by computer

8 14-8 Multiple Sort Keys Can sequence records with more than one key field Sort payroll file in ascending alphabetic sequence by name, within each level, for each office –Office number - major sort field –Level number - intermediate sort field –Name - minor sort field

9 14-9 Multiple Sort Keys For Office 1, desired sequence is Office-No Level-NoName 11ADAMS, J. R. 11BROCK, P. T. 11LEE, S. 12ARTHUR, Q. C. 12SHAH, J. 13RAMIREZ, A. P.

10 14-10 SORT Statement Sorts records into ascending name sequence within level within office Sort Sort-File On Ascending Key Office-No On Ascending Key Level-No On Ascending Key Name Using Payroll-File-In Giving Sort-Payroll-File-Out

11 14-11 Multiple Sort Keys Choose either ASCENDING or DESCENDING sequence for each key If all key fields to be sorted in same sequence, can condense coding Sort Sort-File On Ascending Key Major-Key Intermediate-Key Minor-Key... Example

12 14-12 Duplicate Key Values Assume records to be sorted in descending order by salary If both 9th and 24th records in input file have salary of 30000, which appears first in sort file? Can specify that records with same value for key field be placed in sort file in same order that they appear in original input file

13 14-13 Duplicate Key Example Sort Sort-File On Descending Key Srt-Salary With Duplicates In Order Using Unsorted-File-In Giving Sorted-File-Out DUPLICATES clause ensures that 9th record appears before 24th in Sort-File if both have same Salary value

14 14-14 Files Used in SORT Input file: File of unsorted input records Work or sort file: File used to store records temporarily during sorting process Output file: File of sorted output records

15 14-15 Files Used in SORT All defined using standard SELECT … ASSIGN entries All must have same record format All are opened and closed automatically by SORT

16 14-16 Files Used in SORT Input and output file described with FD entries Sort work file –Described with SD entry (sort file descriptor) –Temporary file used only during sorting but not saved –Sort key fields must be described as part of sort record format

17 14-17 Sample FILE SECTION Data Division. File Section. FD Unsorted-File-In. 01Unsorted-Rec-In. 05Name-InPic X(20). 05Salary-InPic 9(6).

18 14-18 Sample FILE SECTION SDSort-File. 01Sort-Rec. 05Srt-NamePic X(20). 05Srt-SalaryPic 9(6). FD Sorted-File-Out. 01Sorted-Rec-Out. 05Name-OutPic X(20). 05Salary-OutPic 9(6).

19 14-19 Operations Performed by SORT Opens all three files Moves all records from Unsorted-File-In to Sort-File Sorts records in Sort-File in descending sequence by Srt-Salary Moves all records from Sort-File to Unsorted-File-Out Closes all three files

20 14-20 INPUT PROCEDURE Use in place of USING clause to process data from input file prior to sorting Assume only records with Salary-In < 75000 need to be sorted Use Input Procedure to process and select desired records before sorting

21 14-21 SORT with INPUT PROCEDURE Sort Sort-File On Descending Key Srt-Salary Input Procedure Select-Records Giving Sorted-File-Out Select-Records is name of paragraph written by programmer to process records before sorting

22 14-22 INPUT PROCEDURE Select-Records paragraph must Open input file (Unsorted-File-In) Perform processing of input records until there is no more data Close input file

23 14-23 Processing Input Records For each input record, if Salary-In < 75000 –Move input data to sort record –RELEASE record to sort file When INPUT PROCEDURE paragraph is completed, control returns to SORT All records released to sort file are sorted

24 14-24 RELEASE Statement RELEASE sort-record-name-1 [FROM identifier-1] To write a record to the sort file Like WRITE but used to output sort records Format

25 14-25 INPUT PROCEDURE May be used to Validate data in input records Process only records that meet certain criteria Eliminate records with blank fields Remove unneeded fields from input records Count input records

26 14-26 OUTPUT PROCEDURE With GIVING option, records in sort file automatically written to output file after sorting Use OUTPUT PROCEDURE to process sorted records prior to, or instead of, placing them in output file

27 14-27 SORT Statement Format SORT file-name-1 ONASCENDING KEY data-name-1 … … DESCENDING INPUT PROCEDURE IS procedure-name-1 USING file-name-2 … OUTPUT PROCEDURE IS procedure-name-3 GIVING file-name-3 …

28 14-28 SORT PROCEDURES If INPUT PROCEDURE used –SORT transfers control to paragraph or section named in INPUT PROCEDURE –When complete, sort file is sorted If OUTPUT PROCEDURE used –SORT transfers control to paragraph or section named in OUTPUT PROCEDURE –Processes all sorted records in sort file and handles transfer of records to output file

29 14-29 SORT PROCEDURES In INPUT PROCEDURE, records RELEASEd to sort file In OUTPUT PROCEDURE, records RETURNed from sort file

30 14-30 RETURN Statement RETURN sort-file-name-1 AT END imperative statement-1 [ NOT AT END imperative statement-2] [END-RETURN] To retrieve records from the sort file Similar to READ Format

31 14-31 OUTPUT PROCEDURE Steps Paragraph (or section) must Open output file Perform paragraph to RETURN and process records from sort file until there is no more data Close output file When OUTPUT PROCEDURE finished, control returns to SORT

32 14-32 Processing Sorted Records After records sorted but before they are created as output Perform any operations on sort records MOVE sort record to output area WRITE each sort record to output file

33 14-33 SORT Procedures Both INPUT and OUTPUT PROCEDUREs can be used in same program If used, programmer must open/close the input or output file SD (sort) file and files specified with USING or GIVING are automatically opened and closed

34 14-34 When to use PROCEDUREs More efficient to use INPUT PROCEDURE if many records in input file can be eliminated before sort Use OUTPUT PROCEDURE if records require further processing after sort Must use procedure if input or output file and sorted file have different-sized fields or fields in different order

35 14-35 SORT Options Review Option:USING GIVING Result: File is sorted No special handling

36 14-36 SORT Options Review Option:INPUT PROCEDURE GIVING Result: Processes unsorted input records before they are sorted Write records to sort file with RELEASE After INPUT PROCEDURE completed, records are sorted

37 14-37 SORT Options Review Option:USING OUTPUT PROCEDURE Result: Processes records after they have been sorted but before they are written to output file Read records from sort file with RETURN

38 14-38 SORT Options Review Option:INPUT PROCEDURE OUTPUT PROCEDURE Result: Processes data both before and after it is sorted

39 14-39 MERGE Statement To combine two or more files into one Files to be merged must each be in sequence by key field Format similar to SORT, rules for clauses are same

40 14-40 MERGE Statement Format MERGE file-name-1 ON ASCENDING KEY data-name-1 … … DESCENDING USING file-name-2 file-name-3 … OUTPUT PROCEDURE IS procedure-name-1 GIVING file-name-4 … To combine two or more files into one

41 14-41 MERGE Statement File-name-1 is work file designated as an SD Keys specified are defined within SD Data-name-1 is major key, may be followed by intermediate and minor keys USING clause names file to be merged –At least two must be included

42 14-42 MERGE Statement Records may be processed after merging with OUTPUT PROCEDURE, but not before Automatically handles opening, closing, and input/output associated with files

43 14-43 MERGE Statement Example Suppose two separate files of employees are to be combined into one Both input files and the resulting output file contain 80 characters with an Emp- No in the first nine positions File definitions and MERGE instruction follow

44 14-44 MERGE Statement Example Data Division. File Section. FDEmp-File-1. 01Emp-Rec-1Pic X(80). FDEmp-File-2. 01Emp-Rec-2Pic X(80).

45 14-45 MERGE Statement Example SDMerge-File. 01Merge-Rec. 05Mrg-Emp-NoPic X(9). 05Rest-of-RecPic X(71). FDOut-Emp-File. 01Out-Emp-RecPic X(80).

46 14-46 MERGE Statement Example Procedure Division. 100-Main-Module. Merge Merge-File On Ascending Key Mrg-Emp-No Using Emp-File-1, Emp-File-2 Giving Out-Emp-File Stop Run.

47 14-47 Chapter Summary SORT used for sorting records in either ascending or descending order SORT uses work or sort file described with an SD Key fields to be sorted are data-names defined within SD or sort file Files may be sorted using more than one key field

48 14-48 Chapter Summary Routines separate from SORT may be used to –Process unsorted file prior to SORT –Process sorted file after SORT

49 14-49 Chapter Summary Procedures that are part of SORT permit processing –Just before sort performed (INPUT PROCEDURE) –After sort finished but before writing records to sorted file (OUTPUT PROCEDURE)

50 14-50 Chapter Summary RELEASE statement used in INPUT PROCEDURE to make input records available for sorting RETURN statement used in OUTPUT PROCEDURE to read records from sort file

51 14-51 Chapter Summary MERGE statement used to merge two or more files into one

52 14-52 Copyright © 2003 John Wiley & Sons, Inc. All rights reserved. Reproduction or translation of this work beyond that permitted in Section 117 of the 1976 United States Copyright Act without the express written permission of the copyright owner is unlawful. Request for further information should be addressed to the Permissions Department, John Wiley & Sons, Inc. The purchaser may make back-up copies for his/her own use only and not for distribution or resale. The Publisher assumes no responsibility for errors, omissions, or damages, caused by the use of these programs or from the use of the information contained herein.


Download ppt "14-1 COBOL for the 21 st Century Nancy Stern Hofstra University Robert A. Stern Nassau Community College James P. Ley University of Wisconsin-Stout (Emeritus)"

Similar presentations


Ads by Google