BDC Service Application Throttle Settings in SharePoint 2010
If the throttle limit is exceeded, end users will received a message with the following “Unable to display this web part” following with the correlation ID.
You could either modify the throttle with a specified max return or turn off.
To Turn Off
1.
$bdcProxy = Get-SPServiceApplicationProxy | where {$_.GetType().FullName -eq (‘Microsoft.SharePoint.BusinessData.SharedService.’ + ‘BdcServiceApplicationProxy’)}
2.
$dbRule = Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy
3.
Set-SPBusinessDataCatalogThrottleConfig -Identity $dbRule -Enforced:$false
To Modified
1.
Add-PSSSnapin Microsoft.SharePoint.PowerShell -ErrorAction SilentlyContinue
$bdc = Get-SPServiceApplicationProxy |
Where {$_ -match “Business Data Connectivity”}
2.
$throttle = Get-SPBusinessDataCatalogThrotteConfig
-ThrottleType Items -Scope Database -ServiceApplicationProxy $bdc
3.
Set-SpBusinessDataCatalogThrottleConfig -Maximum 10000
-Default 8000 -Identity $Throttle
Filed under: Sharepoint | No Comments »


