Check the Version of Oracle Database

Check Version of Oracle Database

SELECT * FROM v$version;

OR 

SELECT version FROM V$INSTANCE;

OR

SELECT * FROM v$version WHERE banner LIKE 'Oracle%';

Check the component version of Oracle


select * from PRODUCT_COMPONENT_VERSION;

OR 

Check the dba_registry component:
col comp_id for a10
col version for a11
col status for a10
col comp_name for a37
select comp_id,comp_name,version,status from dba_registry;

Check the version of SQLPLUS

sqlplus -v

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.