diff --git a/doc/src/FAQ/FAQ.html b/doc/src/FAQ/FAQ.html index 776d5efacf..733226a97c 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