pga_aggregate_limit設定不合理的一個可能的原因是和processes引數不匹配

wgz7747147820發表於2020-10-28
SQL> startup nomount pfile='/tmp/1.ora';
ORA-00093: pga_aggregate_limit must be between 30000M and 100000G
ORA-01078: failure in processing system parameters

這個報錯的原因是因為processes設定為了6000,而pga_aggregate_limit設定為了17G,這個不匹配,把processes設定為3000後就沒有問題了,當然也可以將pga_aggregate_target設定大,如果記憶體充足的話
看來標準是一個process至少是需要5M記憶體


*.pga_aggregate_limit=17179869184
*.pga_aggregate_target=8589934592
*.processes=6000

相關文章