简体   繁体   中英

Azure SQL monitoring high DTU

We're getting spikes from time to time but can't find what causes it.

  • How to monitor the Azure SQL DTU usage?
  • How can I find what are the high DTU queries in live?

The following will show you a log of the 100 most recent DTU logs. As of now, a log entry is created every 15 seconds.

SELECT TOP 100 *
FROM sys.dm_db_resource_stats
ORDER BY end_time DESC

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM