Using Postgres, is it possible to start/stop an individual database instead of the entire database cluster?
For example:
In Oracle, if I have two databases(DB1 & DB2) running under a single instance of Oracle I can start or stop the separate database with the startup/shutdown script followed by the arguments "dbname" & "start/stop".
/pathname/ora DB1 start
All of the docs I'm reading for Postgres show me how to start/stop the "cluster" with the etc script:
/etc/init.d/postgres start
but I'm not seeing any mechanism that allows me control with a finer granularity.
Does this mean I need to learn some more SQL? (I'm guessing yes)
Can anyone help?