PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Come abilito il profiler della funzione PostgreSQL?

Su PostgreSQL 8.3 su Win32, il plugin di profilazione è installato per impostazione predefinita, ma non caricato. Basta eseguire questo SQL:

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

...e poi quando vuoi profilare del codice,

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