I am stuck in a very unusal problem. There's one trigger I'd like to drop. Now when I drop it, it is dropped successfully.
drop trigger HRCS.hr_external_salary_in_trigger
But when I run this command then I can see the trigger again:
select * from all_triggers where trigger_name like '%external%'
I can see this trigger in UI of PLSQL developer with red x on its head. Now when I try to delete it from left click menu then I get this error:
Error dropping HRCS.hr_external_salary_in_trigger
ORA-04080: trigger 'HR_EXTERNAL_SALARY_IN_TRIGGER' does not exist
Never saw this kind of behavior. Something which I deleted is still there but the program says it doesn't exist while showing it. o_O
How can I get rid of this undesirable annoyance