How can i have distributed dbase in PostgreSQL (multiple and
incomplete database ..horizontal & vertical frag.).Can anybody give me a
link or something related to it.
-Thanks
Sharmad
--
Donot rely on the Operating System which don't have any sources for.
-S
Thus spake guard
> how to run "select from databaseA:tabl1 ,databaseB:table2 "
You can't. You have to have two databases open and do it yourself. I use
Python and often do things like this.
import pg
adb = pg.DB('dbase_a')
bdb = pg.DB('dbase_b')
row = adb.get('table_a', 1)# second argumen
how to run "select from databaseA:tabl1 ,databaseB:table2 "
thanks