码迷,mamicode.com
首页 > 其他好文 > 详细

禁用nested loop join里的spool

时间:2015-12-15 22:51:26      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:

禁用nested loop join里的spool

 

转载自:

https://blogs.msdn.microsoft.com/psssql/2015/12/15/spool-operator-and-trace-flag-8690/

https://answers.sqlperformance.com/questions/698/lazy-spool.html

 

在nested loop join里常常会看到一个spool操作符

技术分享

这个spool 又名‘performance spool‘,目的是保存被驱动表(外表)排序后的结果,以便后面有相同参数的流能够继续使用这个被缓存的结果集。

这样可以提升一些性能

 

但是有时候spool可能会造成数据倾斜或不均衡,这时候我们可以使用trace flag禁用table spool

USE [AdventureWorks]


SELECT *,COUNT(*) OVER()
from production.[Product] AS p
JOIN production.[ProductSubcategory] AS s
ON s.[ProductCategoryID]=p.[ProductSubcategoryID]
OPTION (QUERYTRACEON 8690)

 技术分享

禁用nested loop join里的spool

标签:

原文地址:http://www.cnblogs.com/lyhabc/p/5049655.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!