Is there a way to monitor all ddl scripts in PostgreSQL?

485 Views Asked by At

I'm trying to save all ddl scripts that runs on the database in a table. In SQL Server this could be achieved by setting a DDL Trigger on the database and getting the scripts from the EVENT_DATA object in the trigger context. So far, I haven't found a way do the same thing in PostgreSQL.
Is it even possible?

0

There are 0 best solutions below