You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Query performance troubleshooting | If you are trying to troubleshoot a particular query, start with [Learning how to monitor your queries][Learning how to monitor your queries]. |
39
+
| TempDB space issues |[Monitor TempDB](sql-data-warehouse-manage-monitor.md#monitor-tempdb) space usage. Common causes for running out of TempDB space are:<br>- Not enough resources allocated to the query causing data to spill to TempDB. See [Workload management](resource-classes-for-workload-management.md) <br>- Statistics are missing or out of date causing excessive data movement. See [Maintaining table statistics][Statistics] for details on how to create statistics<br>- TempDB space is allocated per service level. [Scaling your SQL Data Warehouse][Scaling your SQL Data Warehouse] to a higher DWU setting allocates more TempDB space.|
39
40
| Poor query performance and plans often is a result of missing statistics | The most common cause of poor performance is lack of statistics on your tables. See [Maintaining table statistics][Statistics] for details on how to create statistics and why they are critical to your performance. |
40
41
| Low concurrency / queries queued | Understanding [Workload management][Workload management] is important in order to understand how to balance memory allocation with concurrency. |
41
42
| How to implement best practices | The best place to start to learn ways to improve query performance is [SQL Data Warehouse best practices][SQL Data Warehouse best practices] article. |
0 commit comments