No se puede crear el error del elemento de la lista: estrangulado: la consulta excede el umbral de la columna de búsqueda.

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

  •  10-12-2019
  •  | 
  •  

Pregunta

Esto no sucede por mí (soy admin) pero sucede por uno de mis propietarios de jerarquías.Intenta crear un formulario y obtener un error, el registro muestra la estrangulación: la consulta supera el umbral de la columna de búsqueda.

¿Alguna idea?

¿Fue útil?

Solución

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

Otros consejos

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 bajo: CC-BY-SA con atribución
scroll top