vote up 2 vote down star

I'm building an installer for an application. The user gets to select a datasource they have configured and nominate what type of database it is. I want to confirm that the database type is indeed Oracle, and if possible, what version of Oracle they are running by sending a SQL statement to the datasource.

flag

50% accept rate
What about your programming language? This kind of question really depends on the language API for the DB access. – gizmo Sep 19 '08 at 11:29
I can assume I have a JDBC datasource. If the connection fails, or the sql statement generates and error then I can certainly trap that and treat it accordingly. – modius Sep 19 '08 at 11:37

3 Answers

vote up 3 vote down check

Run this SQL:

select * from v$version;

And you'll get a result like:

BANNER
----------------------------------------------------------------
Oracle Database 10g Release 10.2.0.3.0 - 64bit Production
PL/SQL Release 10.2.0.3.0 - Production
CORE    10.2.0.3.0      Production
TNS for Solaris: Version 10.2.0.3.0 - Production
NLSRTL Version 10.2.0.3.0 - Production
link|flag
You first need to get a connection ;-) – gizmo Sep 19 '08 at 11:32
Does this work for all versions of Oracle? – modius Sep 19 '08 at 11:36
All versions of Oracle I have ever used. I can't speak for Oracle 5.0 and before! – Tony Andrews Sep 19 '08 at 15:49
vote up 1 vote down

You can either use

SELECT * FROM v$version;

or

SET SERVEROUTPUT ON
EXEC dbms_output.put_line( dbms_db_version.version );

if you don't want to parse the output of v$version.

link|flag
vote up 1 vote down

Two methods:

select * from v$version;

will give you:

Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
PL/SQL Release 11.1.0.6.0 - Production
CORE 11.1.0.6.0 Production
TNS for Solaris: Version 11.1.0.6.0 - Production
NLSRTL Version 11.1.0.6.0 - Production

OR

select * from product_component_version;

will give you:

PRODUCT VERSION	STATUS
NLSRTL  11.1.0.6.0	Production
Oracle Database 11g Enterprise Edition  11.1.0.6.0	64bit Production
PL/SQL  11.1.0.6.0	Production
TNS for Solaris:    11.1.0.6.0	Production
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.