21.4. Database Configuration#
Recall fromChapter 18 that thePostgres Pro server provides a large number of run-time configuration variables. You can set database-specific default values for many of these settings.
For example, if for some reason you want to disable theGEQO optimizer for a given database, you'd ordinarily have to either disable it for all databases or make sure that every connecting client is careful to issueSET geqo TO off
. To make this setting the default within a particular database, you can execute the command:
ALTER DATABASE mydb SET geqo TO off;