Re: How to watch for schema changes - Mailing list pgsql-general

From Adrian Klaver
Subject Re: How to watch for schema changes
Date
Msg-id 0790286e-e1f9-b8cc-7eb5-2fddfa208737@aklaver.com
Whole thread Raw
In response to Re: How to watch for schema changes  (Igor Korot <ikorot01@gmail.com>)
Responses Re: How to watch for schema changes  (Igor Korot <ikorot01@gmail.com>)
List pgsql-general
On 12/3/18 1:53 PM, Igor Korot wrote:
> Hi, Adrian,

>> Why? Just create the trigger once in a script. Event triggers are an
>> attribute of the database and stay with it until they are dropped. If
>> you want to turn then on and off use the ALTER  EVENT TRIGGER
>> ENABLE/DISABLE. If you insist on recreating them on each connection then:
>>
>> https://www.postgresql.org/docs/10/sql-dropeventtrigger.html
>> DROP EVENT TRIGGER [ IF EXISTS ] name [ CASCADE | RESTRICT ]
>> CREATE EVENT TRIGGER ...
> 
> I was hoping to create a software which will be just "install-and-use".
> No additional script running or database changes is required.

After I hit reply my subconscious kicked in and pointed out something:)

If there are no database changes why do you need to track schema changes?

> 
> But I will probably create it on every connection and delete on the
> disconnect (see above).
> 

-- 
Adrian Klaver
adrian.klaver@aklaver.com


pgsql-general by date:

Previous
From: Adrian Klaver
Date:
Subject: Re: How to watch for schema changes
Next
From: Igor Korot
Date:
Subject: Re: How to watch for schema changes