Home > Database > Oracle > body text

How to check whether oracle is 64 or 32 bit

青灯夜游
Release: 2022-03-16 17:08:41
Original
8264 people have browsed it

Viewing method: 1. Execute the "sqlpus / as sysdba" command to enter sqlplus; 2. Execute the "select * from v$version;" command to view the digit information. If "64bit" is displayed, it is 64-bit. , if the specific number of bits is not displayed, it is 32 bits.

How to check whether oracle is 64 or 32 bit

#The operating environment of this tutorial: linux5.9.8 system, Oracle 11g version, Dell G3 computer.

How to check whether Oracle is 64 or 32-bit

1. Enter sqlplus

sqlpus / as sysdba
Copy after login

How to check whether oracle is 64 or 32 bit

2. Check

select * from v$version;
Copy after login

The host I checked is installed with 64bit oracle

How to check whether oracle is 64 or 32 bit

##PS: 64 Bits will display specific digit information, 32-bit will not be displayed.

32 digits:

SQL> select * from v$version;
BANNER
-------------------------------------------------------------------------------
Oracle Database 11g Enterprise EditionRelease 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE 11.2.0.1.0 Production
TNS for 32-bit Windows: Version 11.2.0.1.0- Production
NLSRTL Version 11.2.0.1.0 - Production
Copy after login

64 digits:

SQL> select * from v$version;
BANNER
-----------------------------------------------------------------
Oracle Database 10g Enterprise EditionRelease 10.2.0.5.0 - 64bi
PL/SQL Release 10.2.0.5.0 - Production
CORE 10.2.0.5.0 Production
TNS for Linux: Version 10.2.0.5.0 -Production
NLSRTL Version 10.2.0.5.0 – Production
Copy after login
Recommended tutorial: "

OracleTutorial

The above is the detailed content of How to check whether oracle is 64 or 32 bit. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template