Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

exceeds the list view threshold 5000 items in Sharepoint 2010

I'm upgrade my sp 2007 to sp 2010 and I have a form library has more then 5000 items. Default view of form library filter items and show only 10-20 item to users.

After upgrade sp2010 All users get below error when going to form library expect site collection admins.

I think this is a permission issue but i did not find any source to solve this issue, have any idea ?

This view cannot be displayed because it exceeds the list view threshold (5000 items) enforced by the administrator.

To view items, try selecting another view or creating a new view. If you do not have sufficient permissions to create views for this list, ask your administrator to modify the view so that it conforms to the list view threshold.

like image 659
Sefer K Avatar asked May 23 '11 07:05

Sefer K


People also ask

How do I change the list view threshold in SharePoint 2010?

You can only change the LVT in Server versions of SharePoint. As an administrator, log in to Central Admin. Go to Application Management > Manage Web Applications. Pick the application to change the List View Threshold.

How do you fix the attempted operation is prohibited because it exceeds the list view threshold enforced by the administrator?

Solution/Immediate Workaround Usually, this error occurs of the number of items in a folder/lists/libraries needs to be less or equal to the list view threshold set in SharePoint.


2 Answers

You can increase the List View Threshold beyond the 5,000 default, but it is highly recommended that you don't, as it has performance implications. The recommended fix is to add an index to the field or fields used in the query (usually the ID field for a list or the Title field for a library).

When there is an index, that is used to retrieve the item(s); when there is no index the whole list is opened for a scan (and therefore hits the threshold). You create the index on the List (or Library) settings page.

This article is a good overview: http://office.microsoft.com/en-us/sharepoint-foundation-help/manage-lists-and-libraries-with-many-items-HA010377496.aspx

like image 98
Simon Rudd Avatar answered Nov 09 '22 01:11

Simon Rudd


The setting for the list throttle

  • Open the SharePoint Central Administration,
  • go to Application Management --> Manage Web Applications
  • Click to select the web application that hosts your list (eg. SharePoint - 80)
  • At the Ribbon, select the General Settings and select Resource Throttling
  • Then, you can see the 5000 List View Threshold limit and you can edit the value you want.
  • Click OK to save it.

For addtional reading: http://blogs.msdn.com/b/dinaayoub/archive/2010/04/22/sharepoint-2010-how-to-change-the-list-view-threshold.aspx

like image 36
Panco Avatar answered Nov 09 '22 01:11

Panco