Re: [External] Merging two database dumps

2018-06-13 Thread pavan95
Yes Vijay, It might work, but I'm thinking it will be a performance overhead in case of complex data. Regards, Pavan -- Sent from: http://www.postgresql-archive.org/PostgreSQL-general-f1843780.html

Re: [External] Merging two database dumps

2018-06-13 Thread Vijaykumar Jain
select * from( select * from server1.table1 union select * from server2.table1 union select * from server3.table1) a; something 😊 Thanks, Vijay From: Alex O'Ree Date: Wednesday, June 13, 2018 at 4:47 PM To: "pgsql-general@lists.postgresql.org" Subject: [External] Merging two da