web analytics

How to check the Oracle database version?

Options

codeling 1595 - 6639
@2017-03-13 09:06:28

To get detailed version number of the database components, you can try:

SELECT * FROM V$VERSION

or

SELECT version FROM V$INSTANCE

or

BEGIN DBMS_OUTPUT.PUT_LINE(DBMS_DB_VERSION.VERSION || '.' || DBMS_DB_VERSION.RELEASE); END;

 

Comments

You must Sign In to comment on this topic.


© 2024 Digcode.com