Minor changes are by default collapsed in the page history.
No changes
The page does not exist yet.
Failed to load changes
Version by on
Leave Collaboration
Are you sure you want to leave the realtime collaboration and continue editing alone? The changes you save while editing alone will lead to merge conflicts with the changes auto-saved by the realtime editing session.
Unloading by using a table lookup
It is sometimes useful to select the rows to unload by determining if the rows exist in another table (for example, if you have a production application that identifies rows to be unloaded over the weekend for later transfer to a non-Db2 application).
Information
Example
//SYSIN DD * UNLOAD DATA FORMAT(DSNTIAUL) UNLOADDN(SYSREC) SELECT * FROM BMC.PRODUCTION_TBL WHERE RECID IN (SELECT RECID FROM ROWS2UNLD)