当前位置:  开发笔记 > 数据库 > 正文

如何启用PostgreSQL功能分析器?

如何解决《如何启用PostgreSQL功能分析器?》经验,为你挑选了1个好方法。

我花了一段时间才弄清楚,几周前我在外语维基上找到了答案,这非常有帮助,所以我想我会分享.



1> Kev..:

在Win32上的PostgreSQL 8.3上,默认情况下安装了profiling插件,但未加载.只需执行此SQL:

LOAD '$libdir/plugins/plugin_profiler.dll';
SET plpgsql.profiler_tablename = 'bazzybar';

...然后当你想要描述一些代码时,

drop table if exists bazzybar; -- reset the profiling stats
select my_function_here('lala',123);  -- this line and variations as many times as you deem fit
select * from bazzybar; -- show the time spent on each line of your function

推荐阅读
地之南_816
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有