Wednesday 17 July 2013

Views to know oracle database version

we can find database version and bit version using v$version;

SQL> select * from v$version;

BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
PL/SQL Release 10.2.0.1.0 - Production
CORE    10.2.0.1.0      Production
TNS for Linux: Version 10.2.0.1.0 - Production
NLSRTL Version 10.2.0.1.0 - Production



SQL> select * from product_component_version;

PRODUCT                             VERSION      STATUS
----------------------------------- ------------ ------------
NLSRTL                              11.2.0.1.0   Production
Oracle Database 11g Enterprise Edit 11.2.0.1.0   Production
ion

PL/SQL                              11.2.0.1.0   Production
TNS for Linux:                      11.2.0.1.0   Production



SQL>  column comp_name format a30;
SQL> select comp_name,version from dba_registry;

COMP_NAME                      VERSION
------------------------------ ------------------------------
OWB                            11.2.0.1.0
Oracle Application Express     3.2.1.00.10
Oracle Enterprise Manager      11.2.0.1.0
OLAP Catalog                   11.2.0.1.0
Spatial                        11.2.0.1.0
Oracle Multimedia              11.2.0.1.0
Oracle XML Database            11.2.0.1.0
Oracle Text                    11.2.0.1.0
Oracle Expression Filter       11.2.0.1.0
Oracle Rules Manager           11.2.0.1.0
Oracle Workspace Manager       11.2.0.1.0

COMP_NAME                      VERSION
------------------------------ ------------------------------
Oracle Database Catalog Views  11.2.0.1.0
Oracle Database Packages and T 11.2.0.1.0
ypes

JServer JAVA Virtual Machine   11.2.0.1.0
Oracle XDK                     11.2.0.1.0
Oracle Database Java Packages  11.2.0.1.0
OLAP Analytic Workspace        11.2.0.1.0
Oracle OLAP API                11.2.0.1.0

18 rows selected.

No comments:

Post a Comment