PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como habilito o perfilador de funções do PostgreSQL?


No PostgreSQL 8.3 no Win32, o plug-in de criação de perfil é instalado por padrão, mas não carregado. Basta executar este SQL:
LOAD '$libdir/plugins/plugin_profiler.dll';
SET plpgsql.profiler_tablename = 'bazzybar';

...e então quando você quiser perfilar algum código,
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