我正在尝试通过慢查询来解决一些应用性能问题。我们正在使用Postgresql 9.2。我可以轻松地看到正在进行的查询:
postgres=# select now() - query_start, query from pg_stat_activity where state <> 'idle';
00:00:01.535388 | select bla from product where ...
我需要知道查询中列出的表格是什么模式。我怎样才能看到哪个&#34;产品&#34;正在查询表,因为在同一个数据库中有数百个不同的模式。
答案 0 :(得分:1)
pg_stat_activity 查看调用 pg_stat_get_activity(pid int)内部函数。 您没有机会在结果中更改查询文本。 现在只有一个解决方案 - 使用模式名称调用查询:
select bla from myschema.product where ...