天天看點

Oracle下ORA-00119錯誤的解決

Oracle在修改參數後啟動時報下列錯誤

SYS@PROD >startup

ORA-00119: invalid specification for system parameter DISPATCHERS

ORA-00111: invalid attribute DISPPATCHERS

解決方法

1.建立pfile

SYS@PROD >create pfile from spfile;

File created.

2.修改pfile

[oracle@edbjr2p1 dbs]$ vim initPROD.ora 

*.dispatchers='(PROT=TCP)(DISPATCHERS=2)'

3.從pfile啟動

SYS@PROD >startup pfile='/u01/app/oracle/product/11.2.0/db_1/dbs/initPROD.ora';

ORACLE instance started.

Total System Global Area  835104768 bytes

Fixed Size                  2257840 bytes

Variable Size             549456976 bytes

Database Buffers          281018368 bytes

Redo Buffers                2371584 bytes

Database mounted.

Database opened.

4.建立spfile

SYS@PROD >create spfile from pfile;

問題解決