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

Home -> Community -> Mailing Lists -> Oracle-L -> AFTER CREATE trigger help, please

AFTER CREATE trigger help, please

From: Magaliff, Bill <Bill.Magaliff_at_lendware.com>
Date: Fri, 10 May 2002 08:08:20 -0800
Message-ID: <F001.0045E49C.20020510080820@fatcity.com>


I'm creating an AFTER CREATE ddl trigger:

CREATE OR REPLACE TRIGGER after_create_trg   after create
   on lwdev.schema
begin

   if sys.dictionary_obj_type='TABLE'

           OR sys.dictionary_obj_type='SEQUENCE'     then

	begin
		 dbms_output.put_line ('TEST');
		 dbms_output.put_line (sys.dictionary_obj_name || ' , ' ||
sys.dictionary_obj_type);
	exception
		when others then 
			dbms_output.put_line ('ERROR');

	end;

   end if;

end;
/

Trigger created as user LWDEV

I have serverout set to ON, but I get nothing when creating a new table . . .

any ideas, please??

thanks, all

--

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

Author: Magaliff, Bill
  INET: Bill.Magaliff_at_lendware.com

Fat City Network Services    -- (858) 538-5051  FAX: (858) 538-5051
San Diego, California        -- Public Internet access / Mailing Lists
--------------------------------------------------------------------
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 Fri May 10 2002 - 11:08:20 CDT

Original text of this message

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