- This topic is empty.
- AuthorPosts
-
- 11/03/2015 at 9:13 am #4644
AnonymousParticipantI have some CAML in Quick apps but cant figure how to trim it to work with the Throttling limit as it keeps on showing a throttling limit error. Can anyone help?
<Eq>
<FieldRef Name="Payment_x0020_Batch" />
<Value Type="Lookup" Source="HttpParameter" SourceName="BATCHDETAIL" />
</Eq>Thanks
- 11/03/2015 at 9:13 am #7197
AnonymousParticipantHi ,
Could you please give me the error message?
BTW. If you don’t care about the performance, you can simply disable the throttling of the relevant SP list to avoid the error. In the following powershell script, replace the values of $siteURL and $listName with your actual site url and list name. Save the script to a *.ps1 file. Then run it on your SharePoint Server.
Add-PSSnapin Microsoft.SharePoint.PowerShell
$siteURL = "http://siteUrl";
$listName = "listName";$spWeb = Get-SPWeb -Identity $siteURL;
$list = $spWeb.Lists[$listName];
Write-Host $list.EnableThrottling;#Disable the throttling
$list.EnableThrottling = $false;If you want to enable the throttling again, you just need to change the $false to $true.
Thanks,
-
- AuthorPosts
You must be logged in to reply to this topic.