Find the version of an Oracle database
Using SQLPlus, issue one of these two commands:
SELECT * FROM SYS.V_$VERSION;
select * from v$version where banner like ‘Oracle%’;
SELECT * FROM SYS.V_$VERSION;
select * from v$version where banner like ‘Oracle%’;
<< Home