Auditing DDL changes in Oracle Database
Auditing changes within the database are becoming more and more important. As well as auditing changes to data, auditing DDL changes can be just as critical. This allows the DBA to not only know what changes have been made but also what haven’t. Being able to see what changes have been made to the database can make debugging much quicker. This solution consists of two tables, one sequence and one trigger. The Tables and Sequence : CREATE TABLE ddl_events ( eventId NUMBER(10,0), eventDate DATE, oraLoginUser VARCHAR2(30), oraDictObjName VARCHAR2(30), oraDictObjOwner VARCHAR2(30), oraDictObjType VARCHAR2(30), oraSysEvent VARCHAR2(30), machine VARCHAR2(64), program ...