ORA-00119 ORA-00132解决方法。

思路:*.local_listener错误导致。要*.local_listener就要修改spfile文件,因为oracle默认是以spfile文件启动的。

 

步骤一、创建INIT<SID>.ORA文件

create pfile from spfile='G:\app\Administrator\product\11.2.0\dbhome_1\database\SPFILEORCL.ORA';

 

步骤二、修改INIT<SID>.ORA文件*.local_listener

*.local_listener='(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))'

 

步骤三、创建SPFILE<SID>.ORA文件

create spfile from pfile='G:\app\Administrator\product\11.2.0\dbhome_1\database\INITorcl.ORA';

相关文章:

  • 2021-06-21
  • 2021-09-19
  • 2021-08-01
  • 2022-12-23
  • 2021-08-14
  • 2022-12-23
  • 2022-12-23
  • 2021-07-28
猜你喜欢
  • 2021-07-15
  • 2022-12-23
  • 2021-07-05
  • 2021-08-12
  • 2021-10-10
  • 2021-09-30
  • 2021-11-15
相关资源
相似解决方案