Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> RE: Get Owner of Trigger or Table in Trigger

RE: Get Owner of Trigger or Table in Trigger

From: Post, Ethan <Ethan.Post_at_ps.net>
Date: Thu, 16 Jan 2003 15:39:26 -0800
Message-ID: <F001.0053251C.20030116153926@fatcity.com>


Hey it works! Thanks.

-----Original Message-----
Sent: Thursday, January 16, 2003 5:15 PM To: Multiple recipients of list ORACLE-L

create table test (C NUMBER);
create trigger test_trig
before insert on test
is
  my_owner varchar2(30);
begin
  select a.owner
  into my_owner
  from v$access a,

       v$session s

  where s.audsid = sys_context('USERENV', 'SESSIONID')
    and s.sid = a.sid
    and a.object = 'TEST_TRIG'

create or replace trigger test_trig
before insert on test
declare
  my_owner varchar2(30);
begin
  select a.owner
  into my_owner
  from v$access a,

       v$session s

  where s.audsid = sys_context('USERENV', 'SESSIONID')
    and s.sid = a.sid
    and a.object = 'TEST_TRIG'
    and a.type = 'TRIGGER';

  dbms_output.put_line(my_owner);
end;
/

Trigger created.

SQL> set serveroutput on
SQL> insert into test values(1);
ORIOLE 1 row created.

SQL>
--

Regards,

Stephane Faroult
Oriole Software
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Stephane Faroult
  INET: sfaroult_at_oriole.com
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Post, Ethan
  INET: Ethan.Post_at_ps.net

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Jan 16 2003 - 17:39:26 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US