FWQ
如何查看oracle是32位还是64位
oracle 位数查看方法:sql*plus 中查询参数值: select value from v$parameter where name = ‘compatible’。若值为 12.1.0.2,则为 32 位;若为 12.2.0.1,则为 64 位。查找进程信息: 在命令行中执行 tasklist | find “ora.exe”(windows)或 ps -ef | grep ora.exe(linux)。如果进程名称后面带 “32”,则为…