Update FAQ.
authorBruce Momjian
Tue, 4 Sep 2001 05:14:36 +0000 (05:14 +0000)
committerBruce Momjian
Tue, 4 Sep 2001 05:14:36 +0000 (05:14 +0000)
doc/src/FAQ/FAQ.html

index 776d5efacfc377bd39a8d8c7aa33f213a556b6b6..733226a97c3af938eaf970f6b8af29937c905449 100644 (file)
@@ -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 (

@@ -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