Restoring manually
Automatic restoring is not supported in the following environments:
- Debugging in CICS® without logging-on
- Debugging Db2® stored procedures
You can save and restore breakpoints, monitor, and LDD specifications by doing the following steps:
- Pre-allocate a sequential data set for saving and restoring of settings.
- Pre-allocate a PDSE or PDS for saving and restoring breakpoints and monitor specifications.
- Start z/OS® Debugger.
- To enable automatic saving of settings, use the following command
where mysetdsn is the name of the data set
that you allocated in step 1:
SET SAVE SETTINGS AUTO FILE mysetdsn;
- To enable automatic saving of breakpoints and LDD specifications
or monitor and LDD specifications, use the following commands, where mybpdsn is
the name of the data set that you allocated in step 2:
SET SAVE BPS AUTO FILE mybpdsn; SET SAVE MONITORS AUTO;
- Shutdown z/OS Debugger.
The next time you start z/OS Debugger in one of these environments, you must use the following commands, in the sequence shown, at the beginning of your z/OS Debugger session.
SET SAVE SETTINGS AUTO FILE mysetdsn;
RESTORE SETTINGS;
SET SAVE BPS AUTO FILE mybpdsn;
RESTORE BPS MONITORS;
You can put these commands into a user preferences file.