Roeland
Member³
Hi,
Execute this in a command window
Everything works and compiles fine.
Now go to the triggers and
1) Right-Click on "Temp_Test_Tr" -> "Recompile"
Result:
2) Right-Click on "Temp_Test_Tr" -> "View"
The trigger appears in a Program window.
Recompile this window.
Result:
This is rather scaring, but the trigger still exists after this 2 error messages.
Could this be solved? The problem here is that the trigger name is case sensitive.
Regards,
Roeland
PS: Look also at Object Has Been Deleted Error when describing v$ system object .
Is this related?
Execute this in a command window
Code:
create table Temp_Test
(id number(9)
)
/
Create Or Replace Trigger "Temp_Test_Tr"
after insert or update or delete on Temp_Test
for each row
begin
Null;
end ;
/
Everything works and compiles fine.
Now go to the triggers and
1) Right-Click on "Temp_Test_Tr" -> "Recompile"
Result:
Code:
ORA-04080: trigger 'TEMP_TEST_TR' does not exist
2) Right-Click on "Temp_Test_Tr" -> "View"
The trigger appears in a Program window.
Recompile this window.
Result:
Code:
Object TEMP_TEST_TR has been deleted
This is rather scaring, but the trigger still exists after this 2 error messages.
Could this be solved? The problem here is that the trigger name is case sensitive.
Regards,
Roeland
PS: Look also at Object Has Been Deleted Error when describing v$ system object .
Is this related?