If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
Actually, for some large-file reorganizations, journaling needs to be active. Specifying RGZPFM ALWCANCEL(*YES) requires journaling to be active. See message ID CPF3181 for a reference.)
If all answers could be this easy ..
It depends on which kind of options you use for the reorg. If you are reorganizing while other programs can still access the file then the story is a little bit different.
When doing an exclusive reorg you will basically create a copy without the holes left by the deleted records and the copy will then replace the original file.
In all other cases the system will shift all records after the first hole to get a continuous file. This method implies lots of inserts and deletes and ………. journal entries. Stopping journalling is an option, but another option to look at is journal caching. Journal caching is changing the way the receivers are physically being written to disk. Normally receivers are written record by record (FORCEWRITE is ON), but with journal caching it will be blockwise and thus less physical writes to disk. BE CAREFUL about this option as the receivers now stay in cache longer and in case of a system failure transactions WILL go missing.
Actually, for some large-file reorganizations, journaling needs to be active. Specifying RGZPFM ALWCANCEL(*YES) requires journaling to be active. See message ID CPF3181 for a reference.)
Tom
If all answers could be this easy ..
It depends on which kind of options you use for the reorg. If you are reorganizing while other programs can still access the file then the story is a little bit different.
When doing an exclusive reorg you will basically create a copy without the holes left by the deleted records and the copy will then replace the original file.
In all other cases the system will shift all records after the first hole to get a continuous file. This method implies lots of inserts and deletes and ………. journal entries. Stopping journalling is an option, but another option to look at is journal caching. Journal caching is changing the way the receivers are physically being written to disk. Normally receivers are written record by record (FORCEWRITE is ON), but with journal caching it will be blockwise and thus less physical writes to disk. BE CAREFUL about this option as the receivers now stay in cache longer and in case of a system failure transactions WILL go missing.