EXPLAIN ANALYZE


oscon=> explain analyze select * from pg_proc order by oid;
                                      QUERY PLAN                                      
--------------------------------------------------------------------------------------
Sort  (C=151.57..155.30 R=1492 W=315) (actual time=181.82..184.05 rows=1495 loops=1)
 Sort Key: oid
  ->  Seq Scan on pg_proc  (C=0.00..72.92 R=1492 W=315) (actual time=11.25..83.81 rows=1495 loops=1)
Total runtime: 224.23 msec

Previous: EXPLAIN: cost         [Table of Contents]         Next: EXPLAIN plan Operators