I am trying to change some global settings below for auto-vacuum on an Azure Database for PostgreSQL instance.
select * from pg_settings where name like 'autovacuum%'
Say if I want to change the scale factor with
ALTER SYSTEM SET autovacuum_vacuum_scale_factor = 0.1;
I get
ERROR: must be superuser to execute ALTER SYSTEM command
SQL state: 42501
Is there a way to update these configuration values?