I'd like to enable extension pg_stat_statements
. It was installed as an extension.
But I cannot see it until server is rebooted. Is there any way to avoid reboot? I tried:
/etc/init.d/pg... reload
SELECT pg_reload_conf()
I'd like to enable extension pg_stat_statements
. It was installed as an extension.
But I cannot see it until server is rebooted. Is there any way to avoid reboot? I tried:
/etc/init.d/pg... reload
SELECT pg_reload_conf()
From the documentation:
The pg_stat_statements module provides a means for tracking execution statistics of all SQL statements executed by a server.
The module must be loaded by adding pg_stat_statements to shared_preload_libraries in postgresql.conf, because it requires additional shared memory. This means that a server restart is needed to add or remove the module.