If Delete Any Table In Back-End Then. What Are The Triggers will Fire Automatically(Those Triggers Are Back-End Triggers Only)?

Showing Answers 1 - 1 of 1 Answers

Alex T

  • May 4th, 2006
 

Oracle has Schema triggers (CREATE OR REPLACE TRIGGER ... ON SCHEMA ... that will file on DDL commands. You can do things like

CREATE OR REPLACE TRIGGER save_our_db
BEFORE DROP OR TRUNCATE
ON SCHEMA


to stop/log attempts to drop a table

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions