Dataloader/MP Reference Manual
Table Of Contents
- What’s New in This Manual
- About This Manual
- 1 Introduction to DataLoader/MP
- 2 DataLoader/MP Components
- 3 Running DataLoader/MP
- 4 Specifying File-Related Options for DataLoader/MP
- 5 Creating a Customized Version of DataLoader/MP
- User Exits
- User Exit Descriptions
- BUILDKEY
- CHECKARG
- CONVERTIT
- DELETEIT
- DONEWITHTRANSACTION
- EXITSDESCRIPTION
- GETNEXTRECORD
- INITIALIZE1
- INITIALIZE2
- INSERTIT
- INSTRUCTIONS
- MISC1, MISC2, MISC3, and MISC4
- NEWTRANSACTION
- NEXTINDIRECTFILE
- SKIPPING
- STATISTICSTIME
- TERMINATING
- T0330U00_DEFAULTEXITS_C
- T0330U00-DEFAULTEXITS-COBOL
- T7900D41_DEFAULTEXITS_C
- T7900V00-DEFAULTEXITS-COBOL
- UPDATEIT
- Default User Exits
- DataLoader/MP Library
- The MAKE Routine for NM DataLoader/MP
- The MAKE Routine for Nonnative Mode DataLoader/MP
- 6 DataLoader/MP Examples
- 7 Recovery Strategies
- A Error and Warning Messages
- B Processing Flowcharts
- C C-Only Error Functions
- Index

DataLoader/MP Reference Manual—424148-003
2-1
2 DataLoader/MP Components
This section describes the file package, structure, and file system of DataLoader/MP.
DataLoader/MP File Package
DataLoader/MP is delivered with the object file, DATALOAD, as well as edit files with
prototypes for its utility procedures. You can copy and modify these procedures to
control processing with your own version of DataLoader/MP.
The complete DataLoader/MP package consists of the following files:
DATALOAD The executable object file for DataLoader/MP, ready to use with
default user exits.
DTLOADH An edit file containing the C prototypes for all the utility procedures
in DataLoader/MP. This file should be incorporated into all user
exit source files by using an #include command.
SEXITSC An edit file containing the C source of the default user exits. To
build a customized version of DataLoader/MP, you should make a
copy of appropriate pieces of this file and modify this copy as
needed.
SEXITSCB An edit file containing the COBOL85 source of the default user
exits. To build a customized version of DataLoader/MP, you should
make a copy of appropriate pieces of this file and modify this copy
as needed.
MAKE A TACL macro designed to assist in creating a customized
DataLoader/MP. It does the linking and optionally does the SQL
compile.
AAAINDEX Descriptions of the data files included with DataLoader/MP. These
data files contain lists of common data such as last names, male
and female first names, street addresses, and more. Use these
files with the Cartesian field method to generate test data. For
more information, see Generating Test Data on page 5-27.
LINKABLE The relinkable object code for DataLoader/MP, complete except
for the default user exits. Used when building a customized
DataLoader/MP. Included only with NM DataLoader/MP.
OEXITS The relinkable object code for the default user exits in archive
format (each user exit separately compiled). Used when building a
customized DataLoader/MP. Included only with NM
DataLoader/MP.