We are reviewing how to segregate different PostgreSQL databases files to different drives on a single server with a single PostgreSQL instance. Does PostgreSQL allow this setup?
We can perform this function in both DB2 and MSSQL.
Does installing multiple PostgreSQL on the same server the only option to archive this setup? Installing multiple SQL instances on the same server method would add complexity and additional breakpoints for future maintenances and upgrades. I.e. we want to avoid.
Thanks in advance for any comments. Sincerely, Sunny
installPostgres multiple times. you can create multiple instances using different data directory (and TCP ports) using the same binaries. Just runinitdbwith a different data directory. But assigning a default tablespace to each database is probably a better (and easier) way.