[SQL] distributed database

2001-07-10 Thread Sharmad Naik
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

Re: [SQL] Distributed database ?

2001-01-19 Thread D'Arcy J.M. Cain
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

[SQL] Distributed database ?

2001-01-18 Thread guard
how to run "select from databaseA:tabl1 ,databaseB:table2 " thanks