How canI check the installed Oracle software architecture?

Is there a way to check if I have 32-bit or 64-bit version of the Oracle software of in Oracle?

I want the script in a check to see if the Oracle Home where this database is running is 32-bit or 64-bit. There is not enough good to check the architecture of the BONES, as some systems I have 64-bit OS but a combination of houses Oracle 32-bit and 64-bit.

I watched parameter $ v and found nothing directly. SELECT platform_name v database $ shows architecture, but it works only on 10g and, possibly, 9i. On 8i, I can't find any similar columns.

Select * from v$ version also indicates whether or not a system is 64-bit (32-bit only shows no banner string to indicate 32 - bit)

But the two methods above are a bit vague: I don't know if they are simply greping the architecture of the operating system or if they are examing the oracle binary?

finite9 wrote:
Is there a way to check if I have 32-bit or 64-bit version of the Oracle software of in Oracle?

Came to $ORACLE_HOME/bin and run
Oracle file

On the database, check session of v$, if saddr columns is raw (4), db is 32 bits (4 * 8), if it is raw (8), db is 64 bits (8 * 8).

Nicolas.

Tags: Database

Similar Questions

Maybe you are looking for