Trên PostgreSQL 8.3 trên Win32, plugin cấu hình được cài đặt theo mặc định, nhưng không được tải. Chỉ cần thực thi SQL này:
LOAD '$libdir/plugins/plugin_profiler.dll';
SET plpgsql.profiler_tablename = 'bazzybar';
... và sau đó khi bạn muốn lập hồ sơ một số mã,
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