Allow Repeated Change With Before Triggers
November 6, 2013 Paul Tuohy
Recently, during a modernization project, I have been making use of the Allow Repeated Change (ALWREPCHG) option with before triggers. ALWREPCHG allows a before trigger to make changes to the record being inserted or updated, and that lets you do some really powerful database magic! The Scenario A table contains a date that is stored in a packed numeric column. The requirement is to change the data type of the column to a proper date data type. This change will require coding changes to at least 20 programs. The “big bang” approach of changing, testing and implementing the 20-plus programs |