postgresql进程查看与管理1、查看数据库当前的进程,看一下有无正在执行的慢SQL记录线程。
SELECT
procpid,
start,
now() - start AS lap,
curre
2021-09-22