首页 >

怎么查询oracle的位数

数据库|Oracle怎么查询oracle的位数
oracle
数据库-Oracle
mfc扫雷源码报告,UBUNTU下载壁纸全屏,tomcat有几种方式部署,网页加密爬虫,阿里云短信 php,seo外包软件seo博客lzw
怎么查询oracle的位数
在线二维码生成器源码,vscode编译器字体大小设置,重置ubuntu用户,qt 网页 Tomcat服务器,修复sqlite文件,运城网页设计,云服务器用什么系统好,微擎的全局附件上传插件,如何引入前端框架,爬虫项目实战python,php文件如何打开,实力强关键词seo优,地方网站程序,网页特效图片,ecshop 整站带数据模板,会员管理页面模板,mrbs会议室预定管理系统,微擎小程序文档lzw
怎么查询oracle的位数方法一:使用sqlplus
友情链接查询工具 php源码,vscode工具插件,用双u盘装ubuntu,apache的tomcat,sqlite 分组内最,qq空间小插件,2017前端框架优缺点,史蒂文斯还在爬虫吗,php 参考手册,专业seo外包seo顾问,化妆品手机端网站,网页全屏宽度,360淘宝模板,html页面点击弹出方框,数据库管理系统软件有access,小程序砍价buglzw
64位:

[oracle@qs-wg-db2 ~]$ sqlplus / as sysdba;SQL*Plus: Release 10.2.0.5.0 - Productionon Sun Sep 25 08:57:22 2011Copyright (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 optionsSQL>

如果是64位,用sqlplus 连上之后会显示具体的位数信息,32位则不会显示。

32位:

C:/Users/Administrator.DavidDai>sqlplus/ as sysdba;https://www.cndba.cn/Dave/article/1130SQL*Plus: Release 11.2.0.1.0 Production onSun Sep 25 08:55:48 2011Copyright (c) 1982, 2010, Oracle.  All rights reserved.https://www.cndba.cn/Dave/article/1130Connected 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 - Productionhttps://www.cndba.cn/Dave/article/1130CORE   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位会显示具体的位数信息,32位不会显示。

方法三:查看v$sql 视图

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视频教学》


  • 暂无相关文章
  • Posted in 未分类