The question is rather simple, but I can't find any documentation on it:
How can I mirror specific tables from a database to another?
The basic idea is having twin databases that share only specific tables between them
Any advice will be appreciated! If PostgreSQL can't do it, is there another RDBMS that can? Thanks in advance!
EDIT : The reason I want to do this is to share "arbitrary" info across two databases using django, without losing proper referential integrity. For example:
Let's say we have a clients, products and sales tables. We want to share our client and product base between two companies, but not our sales. This can be extended to any particular situation (share stocks but not clients, users but not permissions, etc). So I thought the easiest solution was to share specific tables among databases. If there is a better approach to the problem, feel free to share your experiences! Thanks in advance