ORA-12851: PARALLEL_MAX_SERVERS must be greater than or equal to PARALLEL_MIN_SERVERS, string ORACLE 报错 故障修复 远程处理
文档解释
ORA-12851: PARALLEL_MAX_SERVERS must be greater than or equal to PARALLEL_MIN_SERVERS, string
Cause: An attempt was made to set the PARALLEL_MAX_SERVERS parameter to a value less than PARALLEL_MIN_SERVERS.
Action: Set PARALLEL_MAX_SERVERS to a value greater than or equal to PARALLEL_MIN_SERVERS value specified in the accompanying message and retry.
Oracle ORA-12851错误表明在一个并行过程中,PARALLEL_MAX_SERVERS参数的值必须要大于或等于PARALLEL_MIN_SERVERS参数的值。
官方解释
常见案例
正常处理方法及步骤
1. 检查两个参数值,确保PARALLEL_MAX_SERVERS参数的值大于或等于PARALLEL_MIN_SERVERS参数的值。
2. 将PARALLEL_MAX_SERVERS参数的值设置为大于或等于PARALLEL_MIN_SERVERS参数的值。
3. 确保Oracle RAC中相关对象的缓存同步,使用ALTER SYSTEM RESET SHARED_POOL_SIZE命令重新创建共享池。
4. 重新提交语句,查看是否可以正常运行。