How to get Oracle database version?

时光总嘲笑我的痴心妄想 提交于 2020-06-11 05:41:21

问题


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


回答1:


Try running this query in SQLPLUS -

select * from v$version



回答2:


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


来源:https://stackoverflow.com/questions/36812929/how-to-get-oracle-database-version

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!