Can the list view threshold be configured for a specific content database, instead of for a web application?

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

Question

The List View Threshold is configured via Central Administration for a specific web application. If I have more than one content database for a given web application, is it possible to have separate list view theshold settings for each content database?

Was it helpful?

Solution

No it is a Web Application setting and it can't be configured based on Content Databases.

Using PowerShell this setting can be changed as

$webApp = Get-SPWebApplication $siteURL
$webApp.MaxItemsPerThrottledOperation = 5000
$webApp.MaxItemsPerThrottledOperationOverride = $true
$webApp.MaxItemsPerThrottledOperationWarningLevel = 2000
$webApp.MaxListItemRowStorage = 8
$webApp.MaxQueryLookupFields = 0
$webApp.DailyStartUnthrottledPrivilegedOperationsHour = 17
$webApp.DailyStartUnthrottledPrivilegedOperationsMinute = 0
$webApp.DailyUnthrottledPrivilegedOperationsDuration = 1
$webApp.IsBackwardsCompatible = [Microsoft.SharePoint.TriState]::false
$webApp.ChangeLogExpirationEnabled = $false
$webApp.Update()

As you can see there is not option to specify Content Database

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top