Oracle Study之--查看Oracle 版本运算字长(32/64位)方法

本文详细介绍了如何通过sqlplus和v$version查询Oracle版本信息来判断其为32位还是64位,以及在不同位数下查询v$sql的结果差异。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Oracle Study之--查看Oracle 版本运算字长(32/64位)方法

一、采用sqlplus查看

64位:

[oracle@rh6 ~]$ sqlplus '/as sysdba'

SQL*Plus: Release 11.2.0.3.0 Production on Wed Jun 24 14:14:10 2015

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


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

SQL>


32位:

[oracle@rh55 ~]$ !sql
sqlplus '/as sysdba'

SQL*Plus: Release 11.2.0.1.0 Production on Wed Jun 24 14:20:50 2015

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

Connected to an idle instance.

 

二、查看version


64位:

SQL> select * from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production
CORE    11.2.0.3.0      Production
TNS for Linux: Version 11.2.0.3.0 - Production
NLSRTL Version 11.2.0.3.0 - Production

32位:

SQL> select * from v$version;

BANNER
--------------------------------------------------------------------------------
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE    11.2.0.1.0      Production
TNS for Linux: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production

如果是64位,用sqlplus 连上之后会显示具体的位数信息,32位则不会显示。

 

三、查看v$sql
64位:

SQL> select address from v$sql where rownum <2;

ADDRESS
----------------
00000000788E0A20

32位:
SQL> select address from v$sql where rownum <2;

ADDRESS
--------
69A9E378


64位输出的是16位16进制,32位输出的是8位16进制数 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值