我应该使用 MAXDOP 来改进我的维护存储过程吗?
好的,我了解 MAXDOP 的基础知识,但我想了解这是否是使用它的有效场景。
我有一个存储过程,它非常消耗资源,但已经进行了最大限度的优化。目前刷新整个系统需要 30 分钟(本地)(刷新什么并不重要)。
此过程将手动执行一次,例如每隔几个月或根据需要执行一次。
本地(DEV)服务器:
- 4个CPU的
- Windows 7
- SQL Server 2008
Live服务器:
- 16个CPU(我相信)
- Windows Server 2008
- SQL Server 2008。
我应该在这里使用MAXDOP
吗?如果我的本地直播需要 30 分钟,那么使用 MAXDOP
直播时(大约)会多快?
如果是这样,我该如何以及在哪里使用它?存储过程调用其他存储过程,其他存储过程又调用其他存储过程,等等。如果我为此存储过程指定 MAXDOP,它是否会为所有其他存储过程(即在父存储过程的范围内)保留此提示)?
Okay so i understand the basics of MAXDOP
, but i want to understand if this a valid scenario for using it.
I have a stored procedure which is quite resource hungry, but has been optimized to the max. It currently takes 30 minutes (local) to refresh an entire system (what is refreshes isnt really important).
This procedure will get executed manually say once every couple of months, or as necessary.
Local (DEV) Server:
- 4 CPU's
- Windows 7
- SQL Server 2008
Live Server:
- 16 CPU's (i believe)
- Windows Server 2008
- SQL Server 2008.
Should i be using MAXDOP
here? If it takes 30 minutes on my local, how fast would it (approximately) be with MAXDOP
on live?
If so, how and where do i use it? The stored procedure calls other stored procedures, which call others, etc. If i specify MAXDOP
for this stored procedure, will it retain this hint for all other stored procedures (ie in the scope of the parent stored procedure)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我最终没有使用 MAXDOP - 部分原因是 Stack Overflow 上没有人给我任何建议!!!! =)
I ended up not using MAXDOP - partially because no-one on Stack Overflow gave me any advice!!!! =)