如何知道安装的 Oracle Client 是 32 位还是 64 位?

2021-11-25 00:00:00 64-bit oracle oracleclient

操作系统: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

相关文章