Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> significance of user_trigger_cols.column_list
What's the significance of this column?
I had a script that I used to export triggers for a table and it showed:
create or replace
trigger RESERVATIONS_BR_IU
before INSERT OR UPDATE OF UPDATED_BY_EID, UPDATED_DATE
on RESERVATIONS
FOR EACH ROW
begin
declare
UserEID number := StandardTasks.GetUserEID( USER ); TodaysDate date := SYSDATE; begin if :NEW.UPDATED_DATE is null or trunc( :NEW.UPDATED_DATE ) != trunc( TodaysDate ) then
:NEW.UPDATED_DATE := TodaysDate;
end if; if :NEW.UPDATED_BY_EID is null then
:NEW.UPDATED_BY_EID := UserEID;
end if; exception when OTHERS then null;
So, I take it my script to create the triggers wasn't exactly correct, and what's the signifance of those two columns first showing up in user_trigger_cols if the trigger wasn't using them when it fired? Received on Fri Aug 11 2000 - 00:00:00 CDT
![]() |
![]() |