DBA Data[Home] [Help]

TRIGGER: SYS.OJDS$ROLE_TRIGGER$

Source

Description
OJDS$ROLE_TRIGGER$ after drop on database 
Type
AFTER EVENT
Event
DROP 
Column
When
ora_dict_obj_type='ROLE'
Referencing
REFERENCING NEW AS NEW OLD AS OLD
Body
begin
    ojds_context.role_dropped(ora_dict_obj_name);
  exception -- if not present then ignore
  when others then
  if sqlcode not in (-00604, -04063, -06508) then raise; end if;
  end;