码迷,mamicode.com
首页 > 数据库 > 详细

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

时间:2015-06-24 16:40:04      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:oracle

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进制数 

 


本文出自 “天涯客的blog” 博客,请务必保留此出处http://tiany.blog.51cto.com/513694/1665057

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

标签:oracle

原文地址:http://tiany.blog.51cto.com/513694/1665057

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!