Accessing objects in other PostgreSQL databases

Sometimes, you may want to access data in other PostgreSQL databases. The reasons may be as follows:

  • You have more than one database server, and you need to extract data (such as reference) from one server and load it into the other.
  • You want to access data that is in a different database on the same database server, which was split for administrative purposes.
  • You want to perform some changes that you do not wish to rollback in the event of an error or transaction abort. These are known as function side-effects or autonomous transactions.

You might also be considering this because you are exploring the scale out, sharding, or load balancing approaches. If so, read the last part of this recipe, the ...

Get PostgreSQL 9 Administration Cookbook - Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.