Script berikut bisa di gunakan untuk mengetahui siapa saja yg lagi login ke database MSSQL 2005 dan 2008
[sourcecode languange=”css”]
SELECT ‘Authentication Method’=(
CASE
WHEN nt_user_name IS not null THEN ‘Windows Authentication’
ELSE ‘SQL Authentication’
END),
login_name AS ‘Login Name’, ISNULL(nt_user_name,’-‘) AS ‘Windows Login Name’,
COUNT(session_id) AS ‘Session Count’
FROM sys.dm_exec_sessions
GROUP BY login_name,nt_user_name
[/sourcecode]
SQL : mengetahui user dan session pada MSSQL
You May Also Like
Google AI Studio’s new full-stack vibe coding experience
March 30, 2026
Native Regex in SQL Server 2025 | Data Exposed: MVP Edition
March 30, 2026
Prototype to Production with ADK
March 30, 2026
+ There are no comments
Add yours