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 位?
基础教程推荐
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01