Reputation: 21
I have an application that is directly connected to Postgresql database, I need to retrieve certain values from an external SQL Server database.
Is there a way I can send a select statement to SQL Server from postgresql, and get back the results?
Upvotes: 2
Views: 622
Reputation: 45835
yes - you can use foreign table on MS SQL Server
https://github.com/tds-fdw/tds_fdw
Upvotes: 1