home *** CD-ROM | disk | FTP | other *** search
- *******************
- *Employee master file - from the mini
- *******************
- *EXAMPLE DATE1.PAR
- * The master file is in a fixed file format. The date of birth is stored
- * in YY/MM/DD format. The target program doesn't understand this format.
- * 1) Move the employee number (6 bytes)
- * 2) Move the month and day
- * 3) Move the slash
- * 4) Move the year (now at the end of the date)
- * 5) Move the rest of the data
- * 6) USE NO SEPARATORS - so we can use delimit again to break the
- * records into fields.
- ********************
- M 1 6 Employee number
- M 10 5 month and day
- M 9 1 slash
- M 7 2 year
- M 15 63 rest of data
- Snone