Is there a way to capture the OS user that connects to the database via a JDBC or ODBC connection?
Is there way to capture the OS user that connects with a given database account via JDBC/ODBC in a similar manner as the SYS_CONTEXT('USERENV','OS_USER') reference used in Oracle?
0
Comments
select database_name, owner_name from databases;
select current_database();