Adding data to an existing table space
The following example illustrates a typical LOAD RESUME YES in which
BMC AMI Load
appends the provided data to the existing data in the table. During the load,
BMC AMI Load
stops the table space.
//SYSREC DD DISP=SHR,DSN=USER.DATA
//SYSIN DD *
LOAD DATA RESUME YES INDDN SYSREC
INTO TABLE NGT.TABLE1
(ID POSITION(2),
MESSAGE POSITION(*) CHAR(34) NULLIF(1:1) = '?',
LANGUAGE POSITION(*) CHAR(10) DEFAULTIF(1:1) = '?')
//SYSIN DD *
LOAD DATA RESUME YES INDDN SYSREC
INTO TABLE NGT.TABLE1
(ID POSITION(2),
MESSAGE POSITION(*) CHAR(34) NULLIF(1:1) = '?',
LANGUAGE POSITION(*) CHAR(10) DEFAULTIF(1:1) = '?')
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*