plsql developer连接oracle数据库
Posted chyf1990
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了plsql developer连接oracle数据库相关的知识,希望对你有一定的参考价值。
1.下载安装PLSQL Developer12
访问PLSQL Developer官网https://www.allroundautomations.com/bodyplsqldevreg.html,下载win64版本
2.访问oracle官网,下载Instant Client并解压,解压后复制到PLSQL Developer12安装目录下
http://www.oracle.com/technetwork/database/database-technologies/instant-client/downloads/index.html
3.PLSQL Developer配置
打开PLSQL Developer,登录窗口直接选择cancel,在主界面选择Configure - Preferences - Connection
- 设置Oracle Home为 instantclient解压路径
- 设置OCI liarary为 instantclient解压路径\\oci.dll
4.配置环境变量
-
- NLS_LANG SIMPLIFIED CHINESE_CHINA.ZHS16GBK
- TNS_ADMIN instantclient解压路径
5.配置tnsnames.ora
在 instantclient解压路径下创建文件新建network/admin/tnsnames.ora,输入TNS连接信息,注意修改红色部分
TEST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = orcl)
)
)
以上是关于plsql developer连接oracle数据库的主要内容,如果未能解决你的问题,请参考以下文章
PLSQL Developer 连接oracle 看不见数据库
plsql developer不能连接oracle,出现12154 无法解析指定的连接标符?