2009-01-09 15 views

Respuesta

9

En PostgreSQL 8.3 en Win32, el complemento de creación de perfiles se instala de forma predeterminada, pero no se carga. Sólo hay que ejecutar este SQL:

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

... y luego cuando se quiere perfilar un cierto 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 
Cuestiones relacionadas