linux系统oracle执行sqlplus找不到

linux系统oracle执行sqlplus找不到,第1张

linux系统oracle执行sqlplus找不到是设置错误造成的,解决方法为:

1、将ORACLE客户端rpm安装包传输到linux系统。

2、ROOT用户先后执行rpm包安装命令

3、安装完成后,自动生成客户端所在目录/usr/lib/oracle/12.1/client64,其下bin、lib目录分别存储可执行文件和对应的连接库。

4、在/usr/lib/oracle/12.1/client64目录下,用vi命令,创建并配置Oracle客户端的网络服务名配置文件tnsnames.ora。

5、登录sqlplus使用用户,在.bash_profile中设置ORACLE客户端环境变量。

6、在.bash_profile中,将sqlplus所在的路径添加到PATH环境变量中。

7、完成安装后,可以在命令窗口用sqlplus按对应用户名密码连接远程的oracle数据库,读取表了。

Linux系统下可以用sqlplus命令连接oracle数据库,方法如下:sqlplus命令语法:#sqlplus usr/pwd@//host:port/sid#usr:用户名#pwd:密码#host:数据库服务器IP#port:端口#sid:数据库标识符sqlplus命令连接Oracle示例:[oracle@mzl ~]$ sqlplus risenet/1@//192.168.130.99:1521/risenetSQL*Plus: Release 10.2.0.1.0 - Production on Mon Feb 18 15:53:34 2008Copyright (c) 1982, 2005, Oracle. All rights reserved.Connected to:Oracle9i Enterprise Edition Release 9.2.0.1.0 - ProductionWith the Partitioning, OLAP and Oracle Data Mining optionsJServer Release 9.2.0.1.0 - Production#测试数据库select查询语句SQL>select instance_name,status from v$instanceINSTANCE_NAMESTATUS---------------- ------------risenet OPENSQL>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/7655114.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-08
下一篇 2023-04-08

发表评论

登录后才能评论

评论列表(0条)

保存