EXPERT RESPONSE
An Option 21 save will execute the following save commands:
SAVSYS
SAVLIB LIB(*NONSYS) ACCPTH(*YES)
SAVDLO DLO(*ALL) FLR(*ANY)
SAV OBJ(('/*') ('/QSYS.LIB' *OMIT) ('/QDLS' *OMIT) +
('/QIBM/ProdData' *OMIT) +
('/QOpenSys/QIBM/ProdData' *OMIT))
UPDHST(*YES)
After you run these commands you will have a complete backup of your system. If you then just backup data files once a day, you won't be backing up the contents of the DLO or IFS file systems. This leaves a big hole in your backup strategy.
At a bare minimum I'd suggest that you do an Option 21 after any upgrade or any PTF maintenance followed by an Option 23 save on a daily basis. It executes the following save commands:
SAVSECDTA
SAVCFG
SAVLIB LIB(*ALLUSR) ACCPTH(*YES)
SAVDLO DLO(*ALL) FLR(*ANY)
SAV OBJ(('/*') ('/QSYS.LIB' *OMIT) ('/QDLS' *OMIT) +
('/QIBM/ProdData' *OMIT) +
('/QOpenSys/QIBM/ProdData' *OMIT))
UPDHST(*YES)
You will need all of this data in order to recover your system. If you don't have time to run these save options, then you will need to come up with a more complicated save strategy that includes backing up changed objects, doing save while active saves, and possibly journaling objects.
Good Luck...
|