W PostgreSQL 8.3 na Win32 wtyczka profilująca jest domyślnie instalowana, ale nie ładowana. Po prostu wykonaj ten SQL:
LOAD '$libdir/plugins/plugin_profiler.dll';
SET plpgsql.profiler_tablename = 'bazzybar';
...a potem, gdy chcesz sprofilować jakiś kod,
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