Reputation: 9279
I have a table in an Oracle database. An Index has mysteriously disappeared. Is there any way to find out how that happened? I am using Toad for Oracle Version 9.5.0.31
Thanks
Upvotes: 1
Views: 134
Reputation: 1251
I'm not sure you can find out after the fact but you can log future DROPs"
CREATE or replace TRIGGER your_name AFTER DROP ON your_schema pl/sql_block
You'll also have to create a logging table and insert into it.
Upvotes: 1