|
-
Hi,
I'm not sure of the code you would use to stop the drop statement but we use this trigger to keep track of all objects that we drop:
create or replace trigger dropobj_trig
after drop on database
begin
insert into del_log values (
user,
sysdate,
ora_dict_obj_name,
ora_dict_obj_owner,
ora_dict_obj_type);
end;
Hope it helps
Regards
Jim
Oracle Certified Professional
"Build your reputation by helping other people build theirs."
"Sarcasm may be the lowest form of wit but its still funny"
Click HERE to vist my website!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|