oracle ORA-00119 ORA-00132 错误的解决方法

简介:

 

今天在启动数据库人时候报下面的错误。

 
 
  1. SQL> startup  
  2. ORA-00119: invalid specification for system parameter LOCAL_LISTENER  
  3. ORA-00132: syntax error or unresolved network name 'LISTENER_ORCL' 

在另一个终端进入

 
 
  1. [root@huang14 ~]# su - oracle  
  2. [oracle@huang14 ~]$ cd /opt/oracle/10g/dbs/  
  3. [oracle@huang14 dbs]$ strings spfileorcl.ora >initorcl.ora 

把下面这行改成下面这样就可以了,注意大小写哦。

 
 
  1. [oracle@huang14 dbs]$ grep local_liste initorcl.ora   
  2. *.local_listener='(ADDRESS_LIST=(Address=(Protocol=TCP)(Host=192.168.19.11)(Port=1521)))' 
  3. SQL> startup nomount pfile='/opt/oracle/10g/dbs/initorcl.ora' 
  4. ORACLE instance started.  
  5. Total System Global Area  167772160 bytes  
  6. Fixed Size                  1218316 bytes  
  7. Variable Size              62916852 bytes  
  8. Database Buffers          100663296 bytes  
  9. Redo Buffers                2973696 bytes  
  10. SQL> create spfile from pfile;  
  11. File created. 

因为在nomount阶段所以我们可以force

 
 
  1. SQL> startup force 
  2. ORACLE instance started.  
  3. Total System Global Area  167772160 bytes  
  4. Fixed Size                  1218316 bytes  
  5. Variable Size              62916852 bytes  
  6. Database Buffers          100663296 bytes  
  7. Redo Buffers                2973696 bytes  
  8. Database mounted.  
  9. Database opened.  
  10. SQL>  

数据库正常启动。




  本文转自7343696 51CTO博客,原文链接:http://blog.51cto.com/luoping/273241,如需转载请自行联系原作者

相关文章
|
SQL 存储 Oracle
oracle错误代码大全(超详细)
本篇文章是对oracle错误代码进行了详细的总结与分析,需要的朋友参考下
1738 0
|
存储 Oracle 关系型数据库
Oracle中“ORA-00060: 等待资源时检测到死锁” 或存储过程编译卡死的一种解决方法
Oracle中“ORA-00060: 等待资源时检测到死锁” 或存储过程编译卡死的一种解决方法
865 0
|
8月前
|
Oracle 关系型数据库 数据库
Oracle数据库协议适配器错误解决方法
Oracle数据库协议适配器错误解决方法
652 2
|
8月前
|
SQL Oracle 关系型数据库
ORACLE错误码及解决方法
ORACLE错误码及解决方法
366 0
|
SQL Oracle 关系型数据库
解决Oracle的状态: 失败 -测试失败: IO 错误: The Network Adapter could not establish the connection
解决Oracle的状态: 失败 -测试失败: IO 错误: The Network Adapter could not establish the connection
2182 0
解决Oracle的状态: 失败 -测试失败: IO 错误: The Network Adapter could not establish the connection
|
SQL Oracle 关系型数据库
Python 技术篇-操作oracle数据库执行SQL语句报错,提示ORA-00911: 无效字符解决方法
Python 技术篇-操作oracle数据库执行SQL语句报错,提示ORA-00911: 无效字符解决方法
570 0
Python 技术篇-操作oracle数据库执行SQL语句报错,提示ORA-00911: 无效字符解决方法
|
网络协议 Oracle 关系型数据库
winserver2019下安装oracle 安装出现INS-30131报错的解决方法
winserver2019下安装oracle 安装出现INS-30131报错的解决方法
|
Oracle 关系型数据库 Windows
排错-windows平台下访问oracle em出现空白的解决方法
排错-windows平台下访问oracle em出现空白的解决方法
143 0
|
SQL Oracle 关系型数据库
【数据库】解决 oracle: SQL 错误 [900] [42000]: ORA-00900: 无效 SQL 语句
【数据库】解决 oracle: SQL 错误 [900] [42000]: ORA-00900: 无效 SQL 语句
2475 0
【数据库】解决 oracle: SQL 错误 [900] [42000]: ORA-00900: 无效 SQL 语句
|
存储 Oracle 关系型数据库
常见Oracle错误都在这了: ORA-00257/ORA-00313/ORA-28000/ORA-28000
常见Oracle错误都在这了: ORA-00257/ORA-00313/ORA-28000/ORA-28000
常见Oracle错误都在这了: ORA-00257/ORA-00313/ORA-28000/ORA-28000