The subject says it all: What is the best way to determine the exact version of the oracle client I\'m running? Our clients are all running Windows.
I found one su
You can use the v$session_connect_info view against the current session ID (SID from the USERENV namespace in SYS_CONTEXT).
v$session_connect_info
SID
USERENV
e.g.
SELECT DISTINCT s.client_version FROM v$session_connect_info s WHERE s.sid = SYS_CONTEXT('USERENV', 'SID');