通过emca -deconfig dbcontrol db -repos drop命令删除EM资料库时,很长时间没有删除完成,期间数据库连接数暴涨,达到数据库最大连接数,结果前台及后台均连接不上数据库。强制杀死EM及应用相关进程,关闭数据库后,重启数据库时报:ORA-00119,ORA-00132错误。
sql> startup;
ORA-00119: invalid specification for system parameter LOCAL_LISTENER
ORA-00132: Syntax error or unresolved network name 'LISTENER_ORCL'
首先通过spfile创建pfile
sqlplus / as sysdba;
sql> create pfile from spfile;
通过查看pfile文件发现有local_listener该参数,修改*.local_listener='LISTENER_ORCL'为*.local_listener=‘(ADDRESS_LIST=(Address=(Protocol=tcp) (Host=your_hostname)(Port=1521)))' 保存退出。
随后登录数据库根据修改的pfile文件创建spfile
sqlplus / as sysdba;
sql> create spfile from pfile;