Não é possível criar Erro de Item da Lista: Throttled: a consulta excede o limiar da coluna de pesquisa.

sharepoint.stackexchange https://sharepoint.stackexchange.com//questions/72386

  •  10-12-2019
  •  | 
  •  

Pergunta

Isso não acontece para mim (sou admin), mas isso acontece por um dos meus proprietários de hierarquia.Ele tenta criar um formulário e obter um erro, o log mostra acelerada: a consulta excede o limite da coluna de pesquisa.

Alguma idéia?

Foi útil?

Solução

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

Outras dicas

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()
Licenciado em: CC-BY-SA com atribuição
Não afiliado a sharepoint.stackexchange
scroll top