I want to call procedures cross databases in PostgreSql
I found dblink, but I'm trying to understand if it's also possible to call procedures with it
If not, how can it be done?
1 Answer
Yes, you can use db_link for this. You can execute any piece of SQL over db_link.
If you only need access to different tables on these external databases, you could use a foreign table as well. For this you have to install the postgres_fdw-extension.
1 Comment
El_L
what is the syntax