How to know installed Oracle Client is 32 bit or 64 bit?

前端 未结 9 1510
独厮守ぢ
独厮守ぢ 2020-12-23 01:46

OS: Windows 2008 Server R2

Oracle Client: 11.2

Many Thanks

9条回答
  •  死守一世寂寞
    2020-12-23 02:38

    For Unix

    grep "ARCHITECTURE" $ORACLE_HOME/inventory/ContentsXML/oraclehomeproperties.xml
    

    And the output is:

     
    

    For Windows

    findstr "ARCHITECTURE" %ORACLE_HOME%\inventory\ContentsXML\oraclehomeproperties.xml
    

    And the output can be:

    
    

提交回复
热议问题