🗄️ SQL-Server (47 posts)

T-SQL queries, performance tuning, security management, and administration guides for Microsoft SQL Server.

How to check tempdb usage in SQL Server

You can monitor TEMPDB usage by using the following SQL statement. SELECT COALESCE(T1.session_id, T2.session_id) [session_id] , T1.request_id , COALESCE(T1.database_id, T2.database_id) [database_id],…
Read more →