From: Bruce Momjian Date: Tue, 4 Sep 2001 05:14:36 +0000 (+0000) Subject: Update FAQ. X-Git-Tag: REL7_2_BETA1~561 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ec5eedd4fe94bbf2854850f302d4bf00be3e217;p=thirdparty%2Fpostgresql.git Update FAQ. --- diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index 776d5efacfc..733226a97c3 100644 --- a/doc/src/FAQ/FAQ.html +++ b/doc/src/FAQ/FAQ.html @@ -12,7 +12,7 @@ alink="#0000FF">

Frequently Asked Questions (FAQ) for PostgreSQL

-

Last updated: Tue Sep 4 01:06:12 EDT 2001

+

Last updated: Tue Sep 4 01:14:28 EDT 2001

Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
@@ -1267,12 +1267,18 @@ BYTEA bytea variable-length byte array (null-safe) WHERE tab1.col1 NOT IN (SELECT tab2.col1 FROM tab2) ORDER BY col1 -


4.25) How do I perform queries - using multiple databases?

+ using multiple databases?

+ +

There is no way to query any database except the current one. + Because PostgreSQL loads database-specific system catalogs, it is + uncertain how a cross-database query should even behave.

+ +

Of course, a client can make simultaneous connections to + different databases and merge the information that way.

+
-

Extending PostgreSQL