instantclient_10_2 使用

1、 创建oracle用户
useradd oracle
2、在oracle用户下面创建soft文件
mkdir -p /home/oracle/soft/
3、上传对应软件并解压
unzip basic-10.2.0.5.0-linux-x64.zip
unzip sqlplus-10.2.0.5.0-linux-x64.zip
4、编辑环境变量
vim .bash_profile

增加以下两行
export LD_LIBRARY_PATH=/home/oracle/soft/instantclient_10_2
export PATH=$PATH:$LD_LIBRARY_PATH
5创建tnsname.ora的文件
/home/oracle/soft/instantclient_10_2/network/admin

编辑

[oracle@maxscale62 ~]$ cat /home/oracle/soft/instantclient_10_2/network/admin/tnsnames.ora
ora169 =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST =192.168.0.169)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME =orcl10g.us.oracle.com)
)
)

[oracle@oracleinstall ~]$ ifconfig |grep inet
inet 192.168.0.169 netmask 255.255.255.0 broadcast 192.168.0.255

[oracle@oracleinstall ~]$ lsnrctl status

LSNRCTL for Linux: Version 10.2.0.1.0 - Production on 23-MAY-2019 14:56:33

copyright (c) 1991, 2005, Oracle. All rights reserved.

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
STATUS of the LISTENER

Alias LISTENER
Version TNSLSNR for Linux: Version 10.2.0.1.0 - Production
Start Date 22-MAY-2019 18:46:58
Uptime 0 days 20 hr. 9 min. 35 sec
Trace Level off
Security ON: Local OS Authentication
SNMP OFF
Listener Parameter File /u01/app/oracle/product/10.2.0/db_1/network/admin/listener.ora
Listener Log File /u01/app/oracle/product/10.2.0/db_1/network/log/listener.log
Listening Endpoints Summary...
(DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC1)))
(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=oracleinstall)(PORT=1521)))
Services Summary...
Service "PLSExtProc" has 1 instance(s).
Instance "PLSExtProc", status UNKNowN, has 1 handler(s) for this service...
Service "TSH1XDB.us.oracle.com" has 1 instance(s).
Instance "TSH1", status READY, has 1 handler(s) for this service...
Service "orcl10g.us.oracle.com" has 1 instance(s).
Instance "TSH1", status READY, has 1 handler(s) for this service...
Service "orcl10g_XPT.us.oracle.com" has 1 instance(s).
Instance "TSH1", status READY, has 1 handler(s) for this service...
The command completed successfully
[oracle@oracleinstall ~]$

主要是找到:Service

连接确认
$ sqlplus test/test@ora169

sql*Plus: Release 10.2.0.5.0 - Production on Thu May 23 14:59:46 2019

copyright (c) 1982, 2010, Oracle. All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

sql>
连接确认2:
$ sqlplus test/test@//192.168.0.169:1521/orcl10g.us.oracle.com

sql*Plus: Release 10.2.0.5.0 - Production on Thu May 23 15:00:31 2019

copyright (c) 1982, 2010, Oracle. All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

sql>

连接确认3
$ sqlplus test/test@//192.168.0.169:1521/TSH1XDB.us.oracle.com

sql*Plus: Release 10.2.0.5.0 - Production on Thu May 23 15:01:25 2019

copyright (c) 1982, 2010, Oracle. All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

sql>

连接确认4
$ sqlplus test/test@//192.168.0.169:1521/orcl10g_XPT.us.oracle.com

sql*Plus: Release 10.2.0.5.0 - Production on Thu May 23 15:02:00 2019

copyright (c) 1982, 2010, Oracle. All Rights Reserved.

Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bit Production
With the Partitioning, OLAP and Data Mining options

sql>

相关文章

这篇文章主要介绍“hive和mysql的区别是什么”,在日常操作中...
这篇“MySQL数据库如何改名”文章的知识点大部分人都不太理解...
这篇文章主要介绍“mysql版本查询命令是什么”的相关知识,小...
本篇内容介绍了“mysql怎么修改字段的内容”的有关知识,在实...
这篇文章主要讲解了“mysql怎么删除unique约束”,文中的讲解...
今天小编给大家分享一下mysql怎么查询不为空的字段的相关知识...