To find out your Oracle Database version any of these 2 queries:
SELECT * FROM V$VERSION;
which yields the following result:
BANNER
-----------------------------------------------------------------
Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
PL/SQL Release 11.2.0.2.0 - Production
CORE 11.2.0.2.0 Production
TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - Production
You can also run:
SELECT * FROM PRODUCT_COMPONENT_VERSION;
SELECT * FROM V$VERSION;
which yields the following result:
BANNER
-----------------------------------------------------------------
Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
PL/SQL Release 11.2.0.2.0 - Production
CORE 11.2.0.2.0 Production
TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
NLSRTL Version 11.2.0.2.0 - Production
You can also run:
SELECT * FROM PRODUCT_COMPONENT_VERSION;
No comments:
Post a Comment