Answers for "oracle last connection"

SQL
0

oracle last connection

SELECT a.USERNAME, max(TIMESTAMP) FROM DBA_AUDIT_TRAIL a
WHERE ACTION_NAME = 'LOGON' AND USERNAME IN ('MY_USER')
GROUP BY USERNAME ORDER BY 1;
Posted by: Guest on May-11-2021

Code answers related to "oracle last connection"

Code answers related to "SQL"

Browse Popular Code Answers by Language