bash 脚本中比较 Oracle 版本

bash 脚本中比较 Oracle 版本

我正在尝试创建一个 bash 脚本来安装需要 Oracle 11g 客户端的应用程序。

如何读取 bash 脚本中的版本信息?

sqlplus 在 Putty 中运行时会给出答案。但是,当我在 bash 脚本中使用 sqlplus 时,它想要连接到数据库。

答案1

我刚刚sqlplus user/password@sid在 64 位 Red Hat 服务器上运行。这是在标准输出上:

SQL*Plus: Release 11.2.0.2.0 Production on Wed Jun 24 17:27:57 2015

Copyright (c) 1982, 2010, Oracle.  All rights reserved.


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

请注意,它给出了所属的 Oracle 版本sqlplus以及正在运行的实际数据库的版本。

sqlplus要获取属于您的Oracle 版本,可以执行以下操作:

sqlplus /NOLOG < /dev/null | grep Release | cut -d' ' -f3

相关内容