Question

This doesn't happen for me (I'm admin) but it does happen for one of my hierarchy owners. He tries to create a form and gets an error, the log shows Throttled:Query exceeds lookup column threshold.

Any ideas?

Was it helpful?

Solution

Entire script will be :
Replace the web url and list name

Add-pssnapin microsoft.sharepoint.powershell
$web = Get-SPWeb http://whateverWeb
$list = $web.Lists[“List Title”]
$list.enablethrottling = $false
$list.update()
Remove-pssnapin microsoft.sharepoint.powershell

OTHER TIPS

Central Administration --> Manage Web Application --> Select Web Application --> (Ribbon )General Settings --> (Drop down) Resource Throttling -->List View Lookup Threshold --> increase value to higher number.

You can also disable throttling settings for a particular list :

$web = Get-SPWeb http://whateverWeb
$list = $web.Lists[“List Title”]
$list.enablethrottling = $false
$list.update()
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top