启用 PostgreSQL 15.2 中的 SQL 调试模式

huangapple go评论51阅读模式
英文:

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.

huangapple
  • 本文由 发表于 2023年3月31日 19:17:46
  • 转载请务必保留本文链接:https://go.coder-hub.com/75897925.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定