リストアイテムのエラーを作成できません:Slottled:クエリはルックアップ列のしきい値を超えています。

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

  •  10-12-2019
  •  | 
  •  

質問

これは起こりません(私は管理者です)が私の階層の所有者の1つに対して起こります。彼はフォームを作成してエラーを取得しようとし、ログがslototled:queryがルックアップ列のしきい値を超えています。

任意のアイデア?

役に立ちましたか?

解決

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