문제

Azure SQL DWH / PDW have the EXPLAIN keyword to show the parallel query plan. This is really useful for seeing the data movement operations, however I was wondering if there was an equivalent of the traditional sql server query plan. I'm working on the assumption that just because there isn't any data movement, it doesn't necessarily mean that query is well optimised.

도움이 되었습니까?

해결책

Traditional SQL Server query plan is not available yet. You can use DBCC PWD_SHOWEXECUTIONPLAN to see estimated execution plan. For actual execution plan you can get a D-SQL plan using Visual Studio. Grant Fritchey explains in details.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 dba.stackexchange
scroll top