1

내 개발 환경에서 사용하고 있으며 SharePoint Designer를 통해 외부 콘텐츠 형식을 설정했습니다.SharePoint 2010 관리 셸의 스로틀 구성 변경

내 목록 반환 및 오류 및에서 나는 내가 60 개 항목 목록을 테스트하고 잘 작동

스로틀 설정에 한계보다 더 많은 항목을 반환하려고 때문입니다 무엇을 수집 할 수 있습니다 .

나는 명령

설정 SPBusinessDataCatalogThrottleConfig 그것은 다음과 같은 값

을 요청

를 사용하여 업데이트하려고했습니다

정체성 : 최대 : 100,000 기본 : 내가 얻을 12000

이 오류

cmdlet Set-SPBusinessDataCatalogThrottleConfig at command pipeline position 1 
Supply values for the following parameters: 
Identity: 
Maximum: 
Default: 
Set-SPBusinessDataCatalogThrottleConfig : Cannot bind parameter 'Identity'. Can 
not convert the "" value of type "System.String" to type "Microsoft.SharePoint. 
BusinessData.SharedService.ThrottleConfig". 
At line:1 char:40 
+ set-spbusinessdatacatalogthrottleconfig <<<< 
    + CategoryInfo   : InvalidArgument: (:) [Set-SPBusinessDataCatalogT 
    hrottleConfig], ParameterBindingException 
    + FullyQualifiedErrorId : CannotConvertArgumentNoMessage,Microsoft.SharePo 
    int.BusinessData.SharedService.SPSetSPBusinessDataCatalogThrottleConfig 

어떤 "ID"를 입력해야하는지 어떻게 알 수 있습니까?

내가 시도한 모든 것은 같은 메시지를 반환합니다.

스로틀 임계 값을 높이기위한 조언이나 대안이 있습니까?

답변

1

Set-SPBusinessDataCatalogThrottleConfig cmdlet은 변경하려는 구성을 알아야합니다. 사용해보기 :

$bdcProxy = Get-SPServiceApplicationProxy | where {$_.GetType().FullName -eq ('Microsoft.SharePoint.BusinessData.SharedService.' + 'BdcServiceApplicationProxy')} 
$dbRule = Get-SPBusinessDataCatalogThrottleConfig -Scope Database -ThrottleType Items -ServiceApplicationProxy $bdcProxy 
Set-SPBusinessDataCatalogThrottleConfig -Identity $dbRule -Maximum 100000 -Default 12000 
+0

감사합니다. – tcqwerty