Home » Developer & Programmer » Forms » POST firing DB triggers (Forms 11G)
|
|
|
|
|
Re: POST firing DB triggers [message #673082 is a reply to message #673081] |
Mon, 05 November 2018 05:35   |
cookiemonster
Messages: 13966 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Think of it this way.
If you run this in sqlplus:
UPDATE tab SET col1 = value WHERE ....
UPDATE tab SET col2 = value WHERE ....
UPDATE tab SET col3 = value WHERE ....
UPDATE tab SET col4 = value WHERE ....
UPDATE tab SET col5 = value WHERE ....
commit;
The update trigger will run 5 times and you'll get 5 trace records.
If you run this in sqlplus:
UPDATE tab set col1 = value,
col2 = value,
col3 = value,
col4 = value,
col5 = value
where .....
commit;
The trigger will fire once and you'll get 1 trace record.
Forms is no different.
[Updated on: Mon, 05 November 2018 05:35] Report message to a moderator
|
|
|
|
|
|
Goto Forum:
Current Time: Sun May 04 00:56:49 CDT 2025
|