Re: Use Dblink without column defination

2022-05-24 Thread Peter Eisentraut
On 23.05.22 10:16, Chirag Karkera wrote: mesods=> select * from dblink('foreign_server','select * from ods_sch.emp') AS x(a int,b text);  a |    b ---+-  1 | Gohan  1 | Piccolo  1 | Tien (3 rows) This works fine when I specify which columns I want to select. Is there somethin

Re: Use Dblink without column defination

2022-05-24 Thread Chirag Karkera
Hi Team, Any update on this? Thank You. Regards, Chirag Karkera On Mon, 23 May, 2022, 1:46 pm Chirag Karkera, wrote: > Hi Team, > > Appreciate your time to look into this. > > To select from another database I try to use dblink or fdw extension of > Postgres, like this: > > mesods =>CREATE EX

Use Dblink without column defination

2022-05-23 Thread Chirag Karkera
Hi Team, Appreciate your time to look into this. To select from another database I try to use dblink or fdw extension of Postgres, like this: mesods =>CREATE EXTENSION dblink; CREATE EXTENSION mesods => CREATE EXTENSION postgres_fdw; CREATE EXTENSION mesods=> select dblink_connect('conn_db_l