-- This script sets up auditing for the EMPLOYEES table. -- It tracks INSERT, UPDATE, DELETE operations including user info and client IP. -- Questions are embedded to help understand each step. -- 1.
- This block attempts to drop the table. - If the table does not exist, it ignores the error. - This is a statement-level trigger. - It fires AFTER INSERT, UPDATE, or ...