Microsoft SQL Server
Database di sistema - TempDb
Ricerca…
Identificare l'utilizzo di TempDb
La seguente query fornirà informazioni sull'utilizzo di TempDb. Analizzando i conteggi è possibile identificare quale cosa sta influenzando TempDb
SELECT
SUM (user_object_reserved_page_count)*8 as usr_obj_kb,
SUM (internal_object_reserved_page_count)*8 as internal_obj_kb,
SUM (version_store_reserved_page_count)*8 as version_store_kb,
SUM (unallocated_extent_page_count)*8 as freespace_kb,
SUM (mixed_extent_page_count)*8 as mixedextent_kb
FROM sys.dm_db_file_space_usage
Dettagli del database TempDB
La query sottostante può essere utilizzata per ottenere i dettagli del database TempDB:
USE [MASTER]
SELECT * FROM sys.databases WHERE database_id = 2
O
USE [MASTER]
SELECT * FROM sys.master_files WHERE database_id = 2
Con l'aiuto di DMV sotto, è possibile verificare la quantità di spazio TempDb utilizzato dalla sessione. Questa query è molto utile durante il debug di problemi TempDb
SELECT * FROM sys.dm_db_session_space_usage WHERE session_id = @@SPID
Modified text is an extract of the original Stack Overflow Documentation
Autorizzato sotto CC BY-SA 3.0
Non affiliato con Stack Overflow