查看Oracle版本:一步完成(查看oracle版本)

Oracle 是一种世界上最受欢迎的数据库管理系统,不同版本支持不同的功能,如果要使用正确的功能,需要知道当前所使用的 Oracle 版本。本文将介绍如何一步完成查看 Oracle 版本的操作。

首先,确认已经连接到该 Oracle 数据库,方法有多种,这里只提供SQL*Plus登录的指令:

$sqlplus
SQL* Plus: Release 12.2.0.1.0 Production on Wed Mar 14 10:47:26 2018
Copyright (c) 1982, 2016, Oracle. All Rights Reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

如上指令所示,成功连接到 Oracle数据库。接下来在sqlplus里可以使用SQL语句查看该数据库的版本信息:

SQL>SELECT * FROM V$VERSION;
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
PL/SQL Release 11.2.0.4.0 - Production
CORE 11.2.0.4.0 Production
TNS for Linux: Version 11.2.0.4.0 - Production
NLSRTL Version 11.2.0.4.0 - Production

可以看到,当前所使用的 Oracle 版本为 11.2.0.4.0,也就是 Oracle Database 11g Enterprise Edition,如果需要更详细的信息,可以在sqlplus中运行“select banner from v$version;”来查看。

同时,也可以使用以下代码从命令行查看 Oracle 版本:

$ORACLE_HOME/bin/sqlplus -v
SQL*Plus: Release 11.2.0.4.0 Production on Wed Mar 14 10:47:26 2018
Copyright (c) 1982, 2014, Oracle. All Rights Reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options

以上是查看 Oracle 版本的步骤,可以看到只需要很少的步骤,就可以快速查看 Oracle 数据库的版本,以取得正确的功能。


数据运维技术 » 查看Oracle版本:一步完成(查看oracle版本)