How to know installed Oracle Client is 32 bit or 64 bit?(如何知道安装的 Oracle Client 是 32 位还是 64 位?)
问题描述
操作系统:Windows 2008 Server R2
OS: Windows 2008 Server R2
Oracle 客户端:11.2
Oracle Client: 11.2
非常感谢
推荐答案
在 Windows 中找到此问题的一种简单方法是从 Oracle 主目录的 bin 目录运行 SQLPlus,然后检查任务管理器.如果是 32 位版本的 SQLPlus,您将在进程"选项卡上看到如下所示的进程:
A simple way to find this out in Windows is to run SQLPlus from your Oracle homes's bin directory and then check Task Manager. If it is a 32-bit version of SQLPlus, you'll see a process on the Processes tab that looks like this:
sqlplus.exe *32
如果是 64 位,则流程如下:
If it is 64-bit, the process will look like this:
sqlplus.exe
这篇关于如何知道安装的 Oracle Client 是 32 位还是 64 位?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何知道安装的 Oracle Client 是 32 位还是 64 位?
基础教程推荐
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
- 在多列上分布任意行 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
