关于启动数据库后提示ora-12505的解决方法:
"listener does not currently know of SID given in connect descriptor"
第一种可能
是配置得数据库SID名不正确localhost:1521:
oracle即红字部份不是你本机的SID。
第二种可能
发现SID配置没有错误,但是还是报错,那可能就是oracle得监听配置出了问题,需要检查listener.ora文件,用记事本打开,增加以下部份代码:
(SID_DESC =
(GLOBAL_DBNAME =
oracle)
(ORACLE_HOME = \app\oracle\product\10.2.0\db_1)
(SID_NAME =
oracle)
)
红字部份的SID改成
oracle创建时候的SID保存退出。
正确配置如下:
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = e:\oracle\product\10.2.0\db_1)
(PROGRAM = extproc)
)
(SID_DESC =
(GLOBAL_DBNAME = oracle)
(ORACLE_HOME = e:\oracle\product\10.2.0\db_1)
(SID_NAME = oracle)
)
)
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
)
)
分享到:
相关推荐
"Oracle Reference Err_Msg"主要涉及的是Oracle 10G版本的DBA参考及错误消息的处理。 "Ora 10G DBA Reference.chm"这个文档可能是Oracle 10G数据库管理员的官方参考手册,它包含了关于数据库安装、配置、性能优化、...
if not exist c:\1.txt echo. >c:\1.txt & goto err1 if not exist c:\2.txt echo. >c:\2.txt & goto err1 if not exist c:\3.txt echo. >c:\3.txt & goto err1 if not exist c:\4.txt echo. >c:\4.txt & goto err1 ...
(DESCRIPTION=(ADDRESS=(PROTOCOL=BEQ)(PROGRAM=oracle)(ARGV0=oracleORCL)(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(CONNECT_DATA=(SID=ORCL)(CID=(PROGRAM=D:\oracle\ora10g\sqlplus.exe)...
在安装Microsoft Visual Studio .NET 2003 (VS2003)的过程中,有时用户可能会遇到一个错误提示,表明系统无法找到名为“H2INC.ERR”的文件。这个错误通常是由于安装程序未能正确地从安装源中提取或定位该文件所导致...
Oracle GoldenGate是甲骨文公司提供的一个实时数据集成软件,用于确保异构环境中数据的实时同步。该软件能够捕获、转换和交付数据变化,因此在数据同步、数据仓库、容灾和云迁移等场景中具有重要作用。在Oracle ...
2. **配置环境变量**: 在`~/.bash_profile`或`/etc/profile`文件中设置Oracle相关的环境变量,如`ORACLE_HOME`(Oracle软件安装目录)、`ORACLE_SID`(数据库实例名)和`PATH`(包含Oracle可执行文件的路径)。...
ML.exe ML.err H2inc.exe H2inc.err Win.inc Readme.txt Errmsg.txt Support.txt
### Oracle报错大全(珍藏版) #### ORA-00001: Unique Constraint Violated 当尝试插入或更新违反唯一约束的数据时触发此错误。例如,在具有唯一索引的列上插入重复数据。 #### ORA-00017: Rollback Segment Full...
You can solve this problem by deleting the large listener in $ORACLE_BASE\diag\tnslsnr\<hostname>\listener\trace\<listener_name>.log 1) Stop the listener process using the command line or Control ...
System.err.println("Oracle JDBC driver not found. Please ensure ojdbc8.jar is in your classpath."); e.printStackTrace(); } catch (SQLException e) { System.err.println("Error connecting to the ...
System.err.println("Oracle JDBC driver not found."); e.printStackTrace(); } catch (SQLException e) { System.err.println("Error connecting to the database."); e.printStackTrace(); } } } ``` 在...
System.err.println("Oracle JDBC driver not found."); e.printStackTrace(); } catch (SQLException e) { System.err.println("Error connecting to the database."); e.printStackTrace(); } } } ``` 在...
《Go语言连接Oracle数据库:goracle库深度解析》 在Go语言中,Oracle数据库的连接与操作是一项重要的技能。开源项目“go-goracle”正是为此而生,它为Go程序员提供了一个高效、稳定的Oracle客户端库,使得Go语言...
集合了 所有的 Unix命令大全 ...telnet 192.168.0.23 自己帐号 sd08077-you0 ftp工具 192.168.0.202 tools-toolss ... 各个 shell 可互相切换 ksh:$ sh:$ csh:guangzhou% bash:bash-3.00$ ... 命令和参数之间必需用空格隔...
Oracle连接常见问题 Oracle连接常见问题
* Lr_in:Link reset In (primitive sequence),does not apply to FL_Port * Lr_out:Link reset Out (primitive sequence),does not apply to FL_Port * Ols_in:Offline reset in (primitive sequence),does ...
Oracle6可能指的是早期版本的Oracle JDBC驱动,适用于Oracle 6数据库,而"oracle14.jar"则对应的是Oracle 14(可能是10g或11g,因为Oracle 14这个版本不存在,10g是10.2.x系列,11g是11.1.x和11.2.x系列)。...
在MySQL中,错误提示 "[Err] 1055 – Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column…” 指的是在执行包含`GROUP BY`子句的查询时,你试图对未在`GROUP BY`子句中...
解决VS2003安装缺少h2inc.err问题,很难找的却不得不找的一个文件,鄙视ms.