В PostgreSQL 8.3 на Win32 плъгинът за профилиране е инсталиран по подразбиране, но не е зареден. Просто изпълнете този 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