sql >> Database >  >> RDS >> PostgreSQL

Hoe schakel ik de PostgreSQL-functieprofiler in?

Op PostgreSQL 8.3 op Win32 is de profileringsplug-in standaard geïnstalleerd, maar niet geladen. Voer gewoon deze SQL uit:

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

...en als je dan wat code wilt profileren,

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



  1. mysql recursieve (boom) bovenliggende onderliggende categorie

  2. Datum tot milliseconden / milliseconden tot nu toe

  3. PDO_OCI - in een klobveld

  4. Problemen met UnixODBC, FreeTDS en PyODBC