Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get Oracle server version (PL/SQL version,) in PL/SQL procedure

Status
Not open for further replies.

vlvlad

Programmer
Jun 25, 2002
1
DE
Hi,
Dependently from Oracle version I have to execute different code. Something like:

version := get_oracle_version();
if version = '7.3.4' then
<Oracle 7.3.4 code>
end if;

if version = '8.*.*' then
<Oracle 8.* code>
end if;


The question is: how to get oracle version?

Best regards,
Vovik
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top