你好,游客 登录 注册 搜索
背景:
阅读新闻

查看Oracle 32位还是64位(x86 or x64)

[日期:2014-10-05] 来源:Linux社区  作者:wuweilong [字体: ]

如何查看Oracle 32位还是64位(x86 or x64)。

方法一:使用sqlplus

###64位:
[oracle@db01 ~]$ sqlplus / as sysdba
 
SQL*Plus: Release 11.2.0.3.0 Production on Fri Oct 3 18:44:05 2014
 
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>
如果是64位,用sqlplus 连上之后会显示具体的位数信息,32位则不会显示。
 
 
###32位:
[oracle@db01 ~]$sqlplus/ as sysdba;
 
SQL*Plus: Release 11.2.0.1.0 Production onSun Sep 25 08:55:48 2011
 
Copyright (c) 1982, 2010, Oracle. All rights reserved.
 
Connected to:
Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Miningand Real Application Testing options
 

方法二:查看v$version 视图

###32位:
SQL> select * from v$version;
 
BANNER
--------------------------------------------------------------------------
Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE 11.2.0.1.0 Production
TNS for 32-bit Windows: Version 11.2.0.1.0- Production
NLSRTL Version 11.2.0.1.0 - Production
 
###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
和第一种方法一样,64位会显示具体的位数信息,32位不会显示。

方法三:查看v$sql 视图

###32位:输出为8位16进制数
SQL> select address from v$sql whererownum<2;
 
ADDRESS
--------
B50ACDAE
 
###64位:输出为16位16进制数
SQL> select address from v$sql where rownum<2;
 
ADDRESS
----------------
00000000C18D79C8

Oracle 11g 在RedHat Linux 5.8_x64平台的安装手册 http://www.linuxidc.com/Linux/2014-07/104745.htm

Linux-6-64下安装Oracle 12C笔记 http://www.linuxidc.com/Linux/2013-07/86805.htm

CentOS 6.4下安装Oracle 11gR2(x64) http://www.linuxidc.com/Linux/2014-02/97374.htm

Oracle 11gR2 在VMWare虚拟机中安装步骤 http://www.linuxidc.com/Linux/2013-09/89579p2.htm

Debian 下 安装 Oracle 11g XE R2 http://www.linuxidc.com/Linux/2014-03/98881.htm

更多Oracle相关信息见Oracle 专题页面 http://www.linuxidc.com/topicnews.aspx?tid=12

本文永久更新链接地址http://www.linuxidc.com/Linux/2014-10/107619.htm

linux
本文评论   查看全部评论 (0)
表情: 表情 姓名: 字数

       

评论声明
  • 尊重网上道德,遵守中华人民共和国的各项有关法律法规
  • 承担一切因您的行为而直接或间接导致的民事或刑事法律责任
  • 本站管理人员有权保留或删除其管辖留言中的任意内容
  • 本站有权在网站内转载或引用您的评论
  • 参与本评论即表明您已经阅读并接受上述条款