I know I can use this to create a DDL create trigger,
CREATE OR REPLACE TRIGGER create_table_trigger AFTER CREATE ON SCHEMA DECLARE BEGIN END;
The problem is that this trigger will work on DDL, for example "Create sequence"; how can i only do this for the create table ddl files?
sql database oracle triggers ddl
Tolga e
source share