Quantcast
Channel: TechNet Blogs
Viewing all articles
Browse latest Browse all 17778

List View Lookup Threshold

$
0
0

I was recently delivering a SharePoint Risk Assessment on a customers SharePoint 2010 environment, one of the issues identified by the assessment was that the List View Lookup Threshold had been increased from its default setting of 8 to a huge 15! This is a really bad idea. Setting this to a value greater than 8 can cause some serious performance issues due to the potential increased SQL load that this can generate, this is described in Designing large lists and maximizing list performance - http://technet.microsoft.com/en-us/library/cc262813(v=office.14).aspx#Throttling.

The customer I was working with wasn't actually sure why this had been changed and also which (if any) lists relied on this value. I put together a PowerShell script that iterates through all Lists within all Web Applications within the local farm and outputs the URL of all lists that have 8 or more Lookup Fields added. The idea being that they could then work with the list owners to re-architect the list and reduce the List View Lookup Threshold to 8.

All you need to do is specify a suitable location to output this information to (highlighted) and run the script.

"Adding Sharepoint snapin..." | Write-Host -ForegroundColor Yellow
asnp *SharePoint* -ErrorAction SilentlyContinue
$Log = "C:\Log.txt"
"Lists with greater than 8 lookup fields: " + (Get-Date) > $Log
"------------------------------------------------------------" >> $Log
Foreach ($WebApp in (Get-SPWebApplication))
{
"Checking Web Application " + $WebApp.Name | Write-Host -ForegroundColor Green;
Foreach ($Site in $WebApp.Sites)
{
"-Checking Site " + $Site.Url | Write-Host -ForegroundColor Green;
Foreach ($Web in $Site.AllWebs)
{
"--Checking Web " + $Web.Url | Write-Host -ForegroundColor Green;
Foreach ($List In $Web.Lists)
{$Fields = $List.Fields | Where {$_.Type -eq "Lookup" -and $_.SourceID -ne "http://schemas.microsoft.com/sharepoint/v3"};
if ($Fields.Count -gt 7) {"List found with " + $Fields.Count + " lookup fields, Name:" + $List.Title + ", Web URL:" + $Web.Url + ", List URL:" + $List.DefaultViewUrl >> $Log}
}
}
$Site.Dispose()
}
}
"!Please check the log file for further details!" | Write-Host -ForegroundColor Yellow

Brendan Griffin


Viewing all articles
Browse latest Browse all 17778

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>