Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Trigger Question
No question is a stupid question.
You can use the "user" keyword in your trigger PL/SQL block to return = the current user. Although triggers run as the owner of the object, the = user will return the user who is causing the trigger to fire...
SQL> select user, sysdate from dual;
USER SYSDATE ------------------------------ --------- SYSTEM 13-SEP-99
In a trigger it would look like:
CREATE OR REPLACE TRIGGER ANI_AUDIT
AFTER INSERT OR UPDATE OR DELETE ON ANI
REFERENCING NEW AS NEW OLD AS OLD
FOR EACH ROW
BEGIN
IF INSERTING THEN
INSERT INTO ANI_AUDIT (user_id, audit_ts, action_cd, id, ani) VALUES (user,sysdate,'INSERT',:new.id, :new.ani);
END IF;
END;
Michael Milliron <~okana_at_msn.com> wrote in message ...
>This may be a stupid question:
>
>In using triggers - I am doing an insert into a separate table based on =
an
>update or insert into a table. Is there a way to get the Oracle user =
ID of
>the person performing the update from within the trigger to use in the
>insert statment?
>
>
>Michael Milliron
>mikem_at_msamail.com
>okana_at_msn.com
>
>
>
>
Received on Mon Sep 13 1999 - 12:00:42 CDT
![]() |
![]() |