如何看oracle位数 如何查看oracle位数

如何查看安装的Oracle是64位还是32位方法一如何看oracle位数:使用sqlplus
64位如何看oracle位数:
[Oracle@db2 ~]$ sqlplus / as sysdba;
SQL*Plus: Release 10.2.0.5.0 - Productionon Sun Sep 25 08:57:22 2011
Copyright (c) 1982, 2010, Oracle.All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64bit Production
With the Partitioning, OLAP, Data Miningand Real Application Testing options
32位如何看oracle位数:
[oracle@rac1 ~]$ export ORACLE_SID=orcl1
[oracle@rac1 ~]$ sqlplus / as sysdba
SQL*Plus: Release 10.2.0.4.0 - Production on Sat Jun 14 16:24:38 2014
Copyright (c) 1982, 2007, Oracle.All Rights Reserved.
Connected to:
Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Production
With the Partitioning, Real Application Clusters, OLAP, Data Mining
and Real Application Testing options
怎么查oracle是32位的还是64位select * from v$version;
或者使用sqlplus命令登陆数据库如何看oracle位数 , 如果是64位的 , 显示如下如何看oracle位数:
怎样查看oracle是32位还是64位安装包附近有些文档如何看oracle位数,可以看看如何看oracle位数,比如,welcome.html 如何看oracle位数的标头就指明如何看oracle位数了64位,还是32位 doc\index.htm也有类似的说明 。stage\products.xml会有各种说明,如果是32位的,很多参数会显示x86, 而64位的往往不做表示 。
怎么判断oracle客户端 , 服务器端的位数对oracle服务器端的位数非常好判断,只需要连接成功sqlplus就可以很明显的看到oracle服务端的位数 。
客户端判断的话:
使用tnsping的方法来查看
这里就是32位的了
如何判断oracle的版本和位数一、
打开orcale安装目录,如:D:\app\SSG\product\11.2.0\dbhome_1
11.2.0这个目录名就是版本
二、
主要有以下几种方法可以用来确定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 rownum2;
ADDRESS
--------
578428D8
b.如果输出为16位16进制数,则为64位Oracle
SQL select address from v$sql where rownum2;
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..
【如何看oracle位数 如何查看oracle位数】如何看oracle位数的介绍就聊到这里吧,感谢你花时间阅读本站内容 , 更多关于如何查看oracle位数、如何看oracle位数的信息别忘了在本站进行查找喔 。

    推荐阅读