Oracle Database, What is an easy way to find all active db sessions (for all users) log in time (since when) using sql or em? -
oracle dbas, easy way find active db sessions (for users) log in time (since when)? checked sys view v$session , v$active_session_history, not infor want. checked on em client , em, seems no pages showing it.
what, exactly, mean "active"? if mean oracle's definition of active-- session executing sql statement @ exact instant in time, think
select username, status, logon_time v$session status = 'active'
if have different definition of "active" or if trying determine front-end user name in three-tier application, can explain requirements bit more?
Comments
Post a Comment