Writer instructions | |
---|---|
Page title | For most spaces, this page must be titled Space announcements. For spaces with localized content, this page must be titled Space announcements l10n. |
Purpose | Provide an announcement banner on every page of your space. |
Location | Move this page outside of your home branch. |
Guidelines |
Unloading from a full image copy data set
You can use the INFILE option to unload from a full image copy data set that is registered in the Db2 catalog.
Specifying INFILE IMAGECOPY unloads the most recent full image copy data set that BMC AMI Unload finds in the SYSIBM.SYSCOPY table or, for a cabinet copy, the BMCXCOPY table. The following example also illustrates the following functions:
- Overriding the default Db2 date and timestamp format
- Unloading from a subset of a copy
- Sorting the data from the copy
//SYSIN DD *
UNLOAD INFILE IMAGECOPY
TSFMT('MM.DD.YY/HH:MM:SS.NN')
DATEFMT('MM.DD.YY')
PART 3
SELECT *
FROM BMC.EMPLS WHERE SSN > '200000000'
ORDER BY HIRE_DATE DESC, EMPL_LNAME
UNLOAD INFILE IMAGECOPY
TSFMT('MM.DD.YY/HH:MM:SS.NN')
DATEFMT('MM.DD.YY')
PART 3
SELECT *
FROM BMC.EMPLS WHERE SSN > '200000000'
ORDER BY HIRE_DATE DESC, EMPL_LNAME
Related topics
Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*