DEV Community

Dmitry Romanoff
Dmitry Romanoff

Posted on

Postgres: DB parameters configuration on the level of User / Database

Postgres DB parameters configuration on the level of DB user:

alter user ... set ...

For example:

alter user my_db_user set statement_timeout = 900000;

Postgres DB parameters configuration on the level of Database:

alter database ... set ...

For example:

alter database my_db set statement_timeout = 900000;

Top comments (0)