DROP TRIGGER RADIUS_DB.RADACCT_RADACCTID;
- Find the object_id of the trigger
select object_id from dba_objects where object_name='RADACCT_RADACCTID';
- Insert the object_id into objerror$
insert into sys.objerror$ values(126915); commit;
- shutdown abort
- startup
- Retry to drop the trigger, this should be OK now.
DROP TRIGGER RADIUS_DB.RADACCT_RADACCTID;