Operating System - HP-UX
1753316 Members
5413 Online
108792 Solutions
New Discussion юеВ

Re: What version of Oracle am I running

 
SOLVED
Go to solution
Yogeeraj_1
Honored Contributor

Re: What version of Oracle am I running

hi,

querying the v$version should give you the exact version.

e.g.
yd@MYDB.MU> select * from v$version;

BANNER
________________________________________________________________
Oracle8i Enterprise Edition Release 8.1.7.4.0 - 64bit Production
PL/SQL Release 8.1.7.4.0 - Production
CORE 8.1.7.0.0 Production
TNS for HPUX: Version 8.1.7.4.0 - Production
NLSRTL Version 3.4.1.0.0 - Production

5 rows selected.

Elapsed: 00:00:00.03
yd@MYDB.MU>

regards
Yogeeraj
No person was ever honoured for what he received. Honour has been the reward for what he gave (clavin coolidge)
Emilio Brusa
Frequent Advisor

Re: What version of Oracle am I running

Hi,
In SQlplus

select * from v$version

E.

Ratzie
Super Advisor

Re: What version of Oracle am I running

Thanks