Skip to Main Content

SQL & PL/SQL

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to check the Oracle database version

858277Jul 6 2011 — edited Jul 6 2011
Hi,

How can i check, what type of database am using and which version?

Can anyone help me to know?
This post has been answered by Centinul on Jul 6 2011
Jump to Answer

Comments

Centinul
Answer
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;
Marked as Answer by 858277 · Sep 27 2020
onkar.nath
I am not sure what exactly you mean by "what type of database am using " but you can try this:

select from v$version;*

This will give you detailed version number of the database components. You can also use

select from PRODUCT_COMPONENT_VERSION;*

to get various components of the DB with their version.

Onkar
858277
Thanks
1 - 3
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Aug 3 2011
Added on Jul 6 2011
3 comments
1,260,205 views