I wrote an update/insert trigger to do contextual analysis on data piped into sql7 through a powerBuilder program. The source of data is EBCDIC/DB2/Mainframe(aka yucky) and the purpose of the trigger is to do 1-byte-to-2-bytes conversion of CHAR data in some columns.
The trigger is only successful when commiting after each row and using a cursor through INSERTED...
Can I do it commiting more than a row at a time and without the use of cursors?
Much obliged ..
The trigger is only successful when commiting after each row and using a cursor through INSERTED...
Can I do it commiting more than a row at a time and without the use of cursors?
Much obliged ..