方法:1、用「sqlplus /as sysdba」查詢,64位元會顯示具體位數信息,32位不顯示;2、用「v$version」視圖查詢會顯示64位位數信息;3、用「v$sql」視圖查詢,32位元輸出為8位元16進位數,64位元是16位元16進位數。
本教學操作環境:Windows10系統、Oracle 11g版、Dell G3電腦。
#64位元:
[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 Production With the Partitioning, OLAP, Data Miningand Real Application Testing options SQL>
如果是64位,用sqlplus 連上之後會顯示具體的位數信息,32位則不會顯示。
32位元:
C:/Users/Administrator.DavidDai>sqlplus/ as sysdba; https://www.cndba.cn/Dave/article/1130 SQL*Plus: Release 11.2.0.1.0 Production onSun Sep 25 08:55:48 2011 Copyright (c) 1982, 2010, Oracle. All rights reserved. https://www.cndba.cn/Dave/article/1130 Connected to: Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production With the Partitioning, OLAP, Data Miningand Real Application Testing options
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 - Productionhttps://www.cndba.cn/Dave/article/1130 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 10g Enterprise EditionRelease 10.2.0.5.0 - 64bi PL/SQL Release 10.2.0.5.0 - Production CORE 10.2.0.5.0 Production TNS for Linux: Version 10.2.0.5.0 -Production NLSRTL Version 10.2.0.5.0 – Production
和第一種方法一樣,64位元會顯示具體的位數訊息,32位元不會顯示。
32位元:輸出為8位元16進位數
SQL> select address from v$sql whererownum<2; ADDRESS --------
64位元:輸出為16位元16進制數
SQL> select address from v$sql whererownum<2; ADDRESS ---------------- 0000000196FDF7D8
推薦教學:《Oracle影片教學》
以上是怎麼查詢oracle的位數的詳細內容。更多資訊請關注PHP中文網其他相關文章!