Answered by:
BCS Throttle limit of 2000 items

Question
-
Hi All
We have a requirement to configure BCS from SQL. The volume of data could 10 million. With the throttle limit of BCS (2000- max 1million), how should one configure to overcome this limit.
The only req., is to display this data in search results page.
Thanks
Vijay
Thursday, August 20, 2015 10:42 AM
Answers
-
Hi Vijay,
We can increase the BCS Throttle using the PowerShell script as below:
$bdcProxy = Get-SPServiceApplicationProxy | where {$_.GetType().FullName -eq ('Microsoft.SharePoint.BusinessData.SharedService.' + 'BdcServiceApplicationProxy')} Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy | Set-SPBusinessDataCatalogThrottleConfig -Maximum 100000000 -Default 500000 Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy
The following articles for your reference:
Best Regards,
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.- Proposed as answer by Patrick_Liang Monday, August 31, 2015 2:11 AM
- Marked as answer by Patrick_Liang Tuesday, September 1, 2015 3:13 AM
Friday, August 21, 2015 2:04 AM
All replies
-
Hi Vijay,
We can increase the BCS Throttle using the PowerShell script as below:
$bdcProxy = Get-SPServiceApplicationProxy | where {$_.GetType().FullName -eq ('Microsoft.SharePoint.BusinessData.SharedService.' + 'BdcServiceApplicationProxy')} Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy | Set-SPBusinessDataCatalogThrottleConfig -Maximum 100000000 -Default 500000 Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy
The following articles for your reference:
Best Regards,
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact tnmff@microsoft.com.- Proposed as answer by Patrick_Liang Monday, August 31, 2015 2:11 AM
- Marked as answer by Patrick_Liang Tuesday, September 1, 2015 3:13 AM
Friday, August 21, 2015 2:04 AM -
Is this the only option that the thottle limit has to be increased? Is there any other way to fetch all the data and still not change the throttle limit.Friday, September 4, 2015 9:30 AM