问题

在Oracle中,如何判断Oracle是32位还是64位?

 

答案

 

由于Oracle分为客户端和服务器端,所以,查看Oracle是32位还是64位也分为服务器端和客户端2个部分。

1、数据库服务器端

【DB笔试面试860】在Oracle中,如何判断Oracle是32位还是64位?_oracle

方法一:使用SQL*Plus

如果是64位,那么用SQL*Plus连上之后会显示具体的位数信息,若是32位,则不会显示。

64位:

1[oracle@lhrdb2 ~]$ sqlplus / as sysdba
2SQL*Plus: Release 10.2.0.5.0 - Productionon Sun Sep 25 08:57:22 2011
3Copyright (c) 1982, 2010, Oracle.  All Rights Reserved.
4Connected to:
5Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64bit Production
6With the Partitioning, OLAP, Data Miningand Real Application Testing options
7SQL>

32位:

1C:\Users\lhr>sqlplus/ as sysdba
2SQL*Plus: Release 11.2.0.1.0 Production onSun Sep 25 08:55:48 2011
3Copyright (c) 1982, 2010, Oracle.  All rights reserved.
4Connected to:
5Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production
6With the Partitioning, OLAP, Data Miningand Real Application Testing options

 

方法二:查看V$VERSION视图

如果是64位,那么会显示具体的位数信息,若是32位,则不会显示。

64位:

1SQL> SELECT * FROM V$VERSION;
2BANNER
3----------------------------------------------------------------
4Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64bi
5PL/SQL Release 10.2.0.5.0 - Production
6CORE   10.2.0.5.0      Production
7TNS for Linux: Version 10.2.0.5.0 -Production
8NLSRTL Version 10.2.0.5.0 – Production

 

 

32位:

1SQL> SELECT * FROM V$VERSION;
2BANNER
3--------------------------------------------------------------------------
4Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production
5PL/SQL Release 11.2.0.1.0 - Production
6CORE   11.2.0.1.0      Production
7TNS for 32-bit Windows: Version 11.2.0.1.0- Production
8NLSRTL Version 11.2.0.1.0 - Production

 

方法三:查看V$SQL视图

64位:输出为16位16进制数

1SQL> SELECT ADDRESS FROM V$SQL WHERE ROWNUM<2;
2ADDRESS
3----------------
40000000196FDF7D8

 

32位:输出为8位16进制数

1SQL> SELECT ADDRESS FROM V$SQL WHERE ROWNUM<2;
2ADDRESS
3--------
4B50ACCAC

 

2、数据库Client端

客户端可以从Linux和Windows平台分别去分析。

【DB笔试面试860】在Oracle中,如何判断Oracle是32位还是64位?_面试_02

① Linux平台

 

在Linux平台下可以使用file命令检证其中的可执行文件sqlplus,从而知道是64还是32位。

32位客户端:

1[oracle@dblhr01 ~]$ which sqlplus
2/u01/app/oracle/product/10.2.0/db_1/bin/sqlplus
3[oracle@dblhr01 ~]$ file /u01/app/oracle/product/10.2.0/db_1/bin/sqlplus
4/u01/app/oracle/product/10.2.0/db_1/bin/sqlplus:ELF 32-bit LSB executable,
5Intel 80386, version 1 (SYSV), for GNU/Linux 2.2.5, dynamically linked (uses shared libs), not stripped

 

 

64位客户端:

1[oracle@dblhr02 ~]$ which sqlplus
2/u01/app/oracle/product/10.2.0/db_1/bin/sqlplus
3[oracle@dblhr02 ~]$ file /u01/app/oracle/product/10.2.0/db_1/bin/sqlplus
4/u01/app/oracle/product/10.2.0/db_1/bin/sqlplus:ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), for GNU/Linux 2.6.9, not stripped

 

② Windows平台

在64位机器上运行exp、imp或sqlplus等Oracle客户端命令后,去任务管理器上看进程,文件名后面带有*32的就是32位的程序,否则Oracle客户端就是64位的程序,若机器是32位的,那么运行exp、imp或sqlplus等Oracle客户端命令,可以成功运行则为32位,若不能运行,就说明Oracle的客户端是64位。

如下图所示为在Windows Server 2008服务器下,客户端为32位的截图:

 

【DB笔试面试860】在Oracle中,如何判断Oracle是32位还是64位?_面试_03

下图所示为在Windows 10服务器下,客户端为32位的截图:

 

【DB笔试面试860】在Oracle中,如何判断Oracle是32位还是64位?_sqlplus_04

作者:小麦苗

 

【DB笔试面试860】在Oracle中,如何判断Oracle是32位还是64位?_面试_05