November 16, 2005
Oracle HowTo:如何确定Oracle是32 Bit(位)的还是64 Bit(位)的?
作者:eygle
出处:http://blog.eygle.com
主要有以下几种方法可以用来确定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 .. |
Posted by eygle at 3:46 PM | Comments (0)
推荐Kamus的新Blog
作者:eygle
出处:http://blog.eygle.com
Kamus最近创建了自己的新的Blog站点,其网址为:
欢迎大家访问支持Kamus的新站^_^.不过他的新站使用WordPress搭建.
我始终觉得MT是更好的选择,而Blog一旦选定,更改就很费力,所以选型很重要的.
Posted by eygle at 10:22 AM | Comments (5)
你从哪里来,我的朋友?
作者:eygle
出处:http://blog.eygle.com

对自己的网站进行了一个统计分析,主要关注一下通过搜索引擎而来的访问.
Google毫无疑问的占据了第一的位置(58%);百度占据了第二的位置(35%);两者加起来达到93%,其他搜索引擎的访问量低的可以忽略.
Yahoo的访问有1%,看看Yahoo中国改版以后会否有所增加.
更新:注,这是统计的来自搜索引擎的比例,直接访问的不算哈:D
再更新一下:本站的访问来源中
直接访问占: 73.3 %
搜索引擎访问占: 13.3%
其他网页链接占: 13 %
未知来源占: 0.3 %
Posted by eygle at 10:09 AM | Comments (12)
终于我有自己的blog site了
作者:eygle
出处:http://blog.eygle.com
域名仍然是blog.dbform.com
IP地址重新解析到一个单独的服务器上
用WordPress构建的站点
eygle,谢谢这些天来提供的blog服务
哈哈,我也升级了
欢迎大家过来砸砖扔鸡蛋 :-D
Posted by eygle at 1:41 AM | Comments (8)
