Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get Oracle database version?

How to get Oracle database version from sqlplus, Oracle SQL developer, SQL Navigator or other IDE?

like image 576
Do Nhu Vy Avatar asked Apr 23 '16 15:04

Do Nhu Vy


2 Answers

Try running this query in SQLPLUS -

select * from v$version
like image 52
Yaron Idan Avatar answered Oct 01 '22 07:10

Yaron Idan


Execute this statement from SQL*Plus, SQLcl, Oracle SQL Developer, SQL Navigator or other IDE:

select * from product_component_version

And you'll get:

PRODUCT                                VERSION    VERSION_FULL STATUS
-------------------------------------- ---------- ------------ ----------
Oracle Database 18c Enterprise Edition 18.0.0.0.0 18.3.0.0.0   Production
like image 27
Do Nhu Vy Avatar answered Oct 01 '22 06:10

Do Nhu Vy