Win32 पर PostgreSQL 8.3 पर, प्रोफाइलिंग प्लगइन डिफ़ॉल्ट रूप से स्थापित होता है, लेकिन लोड नहीं होता है। बस इस 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