The following can be used to disable throttling on a specific list (must be run as an account with enough priv.):
$web = Get-SPWeb http://whateverWeb $list = $web.Lists[“List Title”] $list.enablethrottling = $false $list.update()
The following can be used to disable throttling on a specific list (must be run as an account with enough priv.):
$web = Get-SPWeb http://whateverWeb $list = $web.Lists[“List Title”] $list.enablethrottling = $false $list.update()
Pingback: My week in SharePoint « CodeBurst
Thanks! Haven’t tried it yet, but this is exactly what I was looking for: a way to change the throttle settings only for the exceptions.
I have tried this , and its working for me.
Are there any pitfalls or disadvantages if i disable the list throttling ? if yes , please specify, what are they?