Check the active session in SQL Server
Check the connected session in SQL Server Check the session connected in SQL Server: exec sp_who exec sp_who2 Check the login time of the session SELECT c.session_id, c.net_transport, c.encrypt_option, c.auth_scheme, s.host_name, s.program_name, s.client_interface_name, s.login_name, s.nt_domain, s.nt_user_name, s.login_time FROM sys.dm_exec_connections AS c JOIN sys.dm_exec_sessions AS s ON…
View On WordPress














