> On Jul 10, 2020, at 14:30, PG Bug reporting form <noreply@postgresql.org> wrote:
>
>
> I am trying to enable logging / auditing / progress tracking feature even if
> my all transactions are rollbacked back. I tried to handle it with
> procedures but its not working. Please suggest how can i achieve this
> feature in PostgreSQL 11.
The most straight-forward method might be to establish two separate connections to the database, one for the primary
applicationworkload and one specifically for logging and auditing, so that rollbacks or errors on the primary
connectiondo not affect the logging connection.
--
-- Christophe Pettus
xof@thebuild.com