科技行者

行者学院 转型私董会 科技行者专题报道 网红大战科技行者

知识库

知识库 安全导航

至顶网软件频道如何确定Oracle是32 Bit(位)的还是64 Bit(位)的?

如何确定Oracle是32 Bit(位)的还是64 Bit(位)的?

  • 扫一扫
    分享文章到微信

  • 扫一扫
    关注官方公众号
    至顶头条

  主要有以下几种方法可以用来确定Oracle的位数:      1.通过SQLPLUS登录即可看出      a.64位登录时就有显示      $ sqlplus "/ as sysdba"      SQL*Plus: Release 9.2.

作者:中国IT实验室 来源:中国IT实验室 2007年10月1日

关键字: SQL 数据库 ORACLE

  • 评论
  • 分享微博
  • 分享邮件

  主要有以下几种方法可以用来确定Oracle的位数:
  
  1.通过SQLPLUS登录即可看出
  
  a.64位登录时就有显示
  
  $ sqlplus "/ as sysdba"
  
  SQL*Plus: Release 9.2.0.4.0 - Production on Wed Nov 16 15:27:28 2005
  
  Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
  
  Connected to:
  Oracle9i Enterprise Edition Release 9.2.0.4.0 - 64bit Production
  With the Partitioning option
  JServer Release 9.2.0.4.0 - Production
  
  b.32位的无显示
  
  [oracle@jumper oracle]$ sqlplus "/ as sysdba"
  
  SQL*Plus: Release 9.2.0.4.0 - Production on Wed Nov 16 15:19:03 2005
  
  Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
  
  Connected to:
  Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
  With the Partitioning option
  JServer Release 9.2.0.4.0 - Production
  
  c.从v$version获取
  
  SQL> select * from v$version;
  
  BANNER
  ------------------------------------------------------------
  Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
  PL/SQL Release 9.2.0.6.0 - Production
  CORE  9.2.0.6.0    Production
  TNS for 32-bit Windows: Version 9.2.0.6.0 - Production
  NLSRTL Version 9.2.0.6.0 - Production
  
  2.从v$sql视图获取
  
  a.如果输出为8位16进制数,则为32位Oracle
  
  SQL> select address from v$sql where rownum<2;
  
  ADDRESS
  --------
  578428D8
  
  b.如果输出为16位16进制数,则为64位Oracle
  
  SQL> select address from v$sql where rownum<2;
  
  ADDRESS
  ----------------
  000000040DFA01E0
  
  3.使用系统命令file
  
  a.如果输出带有32-bit字样为32位Oracle
  
  [oracle@jumper oracle]$ file $ORACLE_HOME/bin/oracle
  /opt/oracle/product/9.2.0/bin/oracle: setuid setgid ELF 32-bit LSB executable, Intel 80386..
  
  b.如果输出带有64-bit字样为64位Oracle
  
  $ file $ORACLE_HOME/bin/oracle
  /opt/oracle/product/9.2.0/bin/oracle:  ELF 64-bit MSB executable SPARCV9 Version 1 ..

查看本文来源

    • 评论
    • 分享微博
    • 分享邮件
    邮件订阅

    如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。

    重磅专题
    往期文章
    最新文章