英文:
Enable SQL debug mode in PostgreSQL 15.2
问题
在PostgreSQL 15.2中,配置文件的位置已更改。你知道如何启用完整的调试模式吗?
英文:
I tried to enable full debug mode using this [Tutorial](https://cloudblue.freshdesk.com/support/solutions/articles/44001888168-how-to-increase-postgresql-log-level- "Tutorial")
But in PostgreSQL 15.2 configuration file location is changed. Do you know how I can enable full debug mode?
答案1
得分: 2
使用 ALTER SYSTEM 语句:
ALTER SYSTEM SET log_statement = 'all';
根据您所更改的内容,您需要使用 pg_reload_conf() 来重新加载配置,或者必须停止并启动数据库集群。
英文:
Use the ALTER SYSTEM statements:
ALTER SYSTEM SET log_statement = 'all';
Depending on what you change, you have to use pg_reload_conf() to just reload the configuration or you must stop&start the database cluster.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论