Hi,
Can anybody pls tell me which system catalog view contains the backup information. I know by using the file-structure or file name this can be evaluated, but I want to extract from system catalog tables.
thanks in advance
Ifxtechie
My experience is DB2 v.7 OS390/ZOS. SYSIBM.SYSCOPY contains Image Copy rows. I use the following to list image copies.
SELECT DBNAME, TSNAME, DSNUM, ICTYPE, "TIMESTAMP", ICBACKUP
, DSNAME, HEX(START_RBA), SHRLEVEL, OTYPE
WHERE DBNAME LIKE '????????%'
AND TSNAME LIKE '????????%'
AND ICTYPE IN('F','I')
ORDER BY DBNAME, TSNAME, DSNUM, "TIMESTAMP" DESC
;
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.