Skip to content

Latest commit

 

History

History
40 lines (33 loc) · 1.6 KB

sys-dm-pdw-sys-info-transact-sql.md

File metadata and controls

40 lines (33 loc) · 1.6 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic dev_langs monikerRange
sys.dm_pdw_sys_info (Transact-SQL)
sys.dm_pdw_sys_info (Transact-SQL)
WilliamDAssafMSFT
wiassaf
04/15/2024
sql
data-warehouse
reference
TSQL
>=aps-pdw-2016||=azure-sqldw-latest

sys.dm_pdw_sys_info (Transact-SQL)

[!INCLUDE applies-to-version/asa-pdw]

Provides a set of appliance-level counters that reflect overall activity on the appliance.

Column Name Data Type Description Range
total_sessions int Number of sessions currently in the system. 0 to maximum concurrent sessions
idle_sessions int Number of sessions currently idle.
active_requests int Number of active requests currently running.
queued_requests int Number of currently queued requests.
active_loads int Number of loads currently running in the system.
queued_loads int Number of queued loads waiting for execution.
active_backups int Number of backups currently running.
active_restores int Number of backup restores currently running.

Examples

No filters are needed for this dynamic management view:

SELECT * FROM sys.dm_pdw_sys_info;

Related content