真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么看oracle的位數(shù),怎么查看oracle是多少位的

查看Oracle 是32位還是64位的方法

方法一:使用sqlplus64位:[Oracle@qs-wg-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 ProductionWith the Partitioning, OLAP, Data Miningand Real Application Testing options SQL 如果是64位,用sqlplus 連上之后會顯示具體的位數(shù)信息,32位則不會顯示。 32位:C:\Users\Administrator.DavidDaisqlplus/ 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 - ProductionWith 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 - ProductionPL/SQL Release 11.2.0.1.0 - ProductionCORE 11.2.0.1.0 ProductionTNS for 32-bit Windows: Version 11.2.0.1.0- ProductionNLSRTL Version 11.2.0.1.0 - Production 64位:SQL select * from v$version; BANNER----------------------------------------------------------------Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64biPL/SQL Release 10.2.0.5.0 - ProductionCORE 10.2.0.5.0 ProductionTNS for Linux: Version 10.2.0.5.0 -ProductionNLSRTL Version 10.2.0.5.0 – Production 和第一種方法一樣,64位會顯示具體的位數(shù)信息,32位不會顯示。

創(chuàng)新互聯(lián)建站專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站設(shè)計(jì)制作、網(wǎng)站建設(shè)、普寧網(wǎng)絡(luò)推廣、小程序設(shè)計(jì)、普寧網(wǎng)絡(luò)營銷、普寧企業(yè)策劃、普寧品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)建站為所有大學(xué)生創(chuàng)業(yè)者提供普寧建站搭建服務(wù),24小時(shí)服務(wù)熱線:13518219792,官方網(wǎng)址:www.cdcxhl.com

如何鑒別oracle 64位 32位

主要有以下幾種方法可以用來確定Oracle的位數(shù):

1.通過SQLPLUS登錄即可看出

a.64位登錄時(shí)就有顯示

$ 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進(jìn)制數(shù),則為32位Oracle

SQL select address from v$sql where rownum2;

ADDRESS

--------

578428D8

b.如果輸出為16位16進(jìn)制數(shù),則為64位Oracle

SQL select address from v$sql where rownum2;

ADDRESS

----------------

000000040DFA01E0

3.使用系統(tǒng)命令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是32位的還是64位

select * from v$version;

或者使用sqlplus命令登陸數(shù)據(jù)庫,如果是64位的,顯示如下:

如何查看Oracle客戶端版本及位數(shù)

在%ORACLE_HOME%\inventory\ContentsXML目錄下面找到comps.xml文件,例如我目前的測試服務(wù)器上路徑為F:\Win10\app\Mr.Bruce\product\11.2.0\client_1\inventory\ContentsXML

如果PLAT="NT_AMD64"表示安裝的是64位的Oracle 客戶端,如果PLAT="NT_X86"則表示安裝的是32位的Oracle客戶端。

怎么判斷oracle客戶端,服務(wù)器端的位數(shù)

對oracle服務(wù)器端的位數(shù)非常好判斷,只需要連接成功sqlplus就可以很明顯的看到oracle服務(wù)端的位數(shù)。

客戶端判斷的話:

使用tnsping的方法來查看

這里就是32位的了

查看oracle是32位還是64位

安裝包附近有些文檔,可以看看,比如,welcome.html

的標(biāo)頭就指明了64位,還是32位

doc\index.htm也有類似的說明。

stage\products.xml會有各種說明,如果是32位的,很多參數(shù)會顯示x86,

而64位的往往不做表示。


網(wǎng)頁題目:怎么看oracle的位數(shù),怎么查看oracle是多少位的
網(wǎng)頁地址:http://weahome.cn/article/hcoddo.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部