목록 항목 오류를 만들 수 없습니다. 스로틀 : 쿼리가 조회 열 임계 값을 초과합니다.

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

  •  10-12-2019
  •  | 
  •  

문제

이것은 나를 위해 발생하지 않습니다 (저는 관리자)하지만 계층 구조 소유자 중 하나에서 발생합니다.그는 양식을 만들고 오류를 가져오고 로그가 스로틀이 표시됩니다. 쿼리가 조회 열 임계 값을 초과합니다.

아이디어가 있습니까?

도움이 되었습니까?

해결책

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

다른 팁

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()
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top