In PostgreSQL 9.0, can I configure the PostgreSQL not to replicate a certain database? I have three databases and I want to replicate only two.
|
feedback
|
migrated from stackoverflow.com May 31 '11 at 17:15
This question came from our site for professional and enthusiast programmers.
|
No, you can't, that's not supported. PostgreSQL uses log shipping, so everything in WAL is shipped and processed on the slave. Take a look at Slony, that will solve your problem. | |||
feedback
|