Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Are all SQL Server DMVs supported by data warehouse?
These are the currently supported DMVs: sys.dm_exec_connections, sys.dm_exec_sessions, and sys.dm_exec_requests
Hello,
If you want to check this more closely, you can output all views using T-SQL.
Here is a simple query for this.
SELECT *
FROM sys.all_views
ORDER BY name;