Posts Tagged ‘v$session’

Getting Oracle Version Number

March 27, 2012

Ever wondered how to know the version number of the Oracle server you are connected to. You can very well use the v$session table.

Select * from v$session;

This will give you 4-5 rows showing all the version numbers of different tools used in the database. Happy Coding Guys. 🙂