From 9aac62305b13a5cf7e8ded2020ffca25f9d666be Mon Sep 17 00:00:00 2001
From: Bruce Momjian Last updated: Fri Apr 26 23:03:46 EDT 2002 Last updated: Mon Jun 10 15:47:38 EDT 2002 Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) You can also compile with profiling to see what functions are
taking execution time. The backend profile files will be deposited
in the pgsql/data/base/dbname directory. The client profile
- file will be put in the client's current directory. Linux requires
+ file will be put in the client's current directory. Linux requires
a compile with -DLINUX_PROFILE for proper profiling. psql has a variety of backslash commands to show such
- information. Use \? to see them. There are also system tables
- beginning with pg_ that describe these too. Also, psql
- -l will list all databases.Frequently Asked Questions (FAQ) for PostgreSQL
-
@@ -138,7 +138,9 @@
4.24) How do I perform queries using multiple
databases?
4.25) How do I return multiple rows or columns
- from a function?
+ from a function?
+ 4.26) Why can't I reliably create/drop
+ temporary tables in PL/PgSQL functions?
Extending PostgreSQL
@@ -742,7 +744,7 @@
3.8) Why do I get "Sorry, too many
@@ -900,9 +902,9 @@
databases, and users are defined?
Also try the file pgsql/src/tutorial/syscat.source. It illustrates many of the SELECTs needed to get @@ -1307,16 +1309,25 @@ BYTEA bytea variable-length byte array (null-byte safe) different databases and merge the information that way.
You can return result sets from PL/pgSQL functions using + refcursors. See + http://developer.postgresql.org/docs/postgres/plpgsql-cursors.html, + section 23.7.3.3.
+ +You can return result sets from PL/pgSQL functions using - refcursors. See - http://developer.postgresql.org/docs/postgres/plpgsql-cursors.html, - section 23.7.3.3.
- -