How to segregate dev database from prod in a single cluster?
We maybe architecting a solution where we have 1 big oracle cluster using
CRS
on linux and within the cluster we will be running both production and development databases. Is it at all possible to create some kind of segregation between prod and dev databases, specifically with regard to limiting the amount of system resources the dev databases can use in the cluster. What we would want to avoid is a situation where a dev process maybe runs away with CPU and creates a problem for the production database running in the same cluster?
0