vote up 11 vote down star
1

I am particularly interested in Document Libraries, but in terms of general SharePoint lists, can anyone answer the following...?

  1. What is the maximum number of items that a SharePoint list can contain?
  2. What is the maximum number of lists that a single SharePoint server can host?
  3. When the number of items in the list approaches the maximum, does filtering slow down, and if so, what can be done to improve it?
flag

8 Answers

vote up 14 vote down check

In SharePoint v.2:

  • Max # list items : 2000 (per folder level)
  • Max lists per site : 2000 is a "reasonable" number
  • Effect when we reach the limit : Exponential degradation of performance.

More info: http://technet.microsoft.com/en-us/library/cc287743.aspx

In SharePoint v.3:

  • Max # list items : 2000 (per view, you can have million items as long as you don't display in a single view more than 2000 items)
  • Max lists per site : 2000 is a "reasonable" number
  • Effect when we reach the limit : Exponential degradation of performance when we enumerate more than 2000 items using the OM. An alternative is to use Search API or CAML queries.

More info: http://technet.microsoft.com/en-us/library/cc287790.aspx

link|flag
vote up 4 vote down

Link To Resource

link|flag
vote up 1 vote down

http://blah.winsmarts.com/2008-4-SharePoint_limits.aspx

for #3: you can index specific columns in a list, but you should still keep the sizes down.

link|flag
vote up 0 vote down

The exact answers have already been given, however I do feel I should add this warning:
This might be one of those situations where if you have to ask, you can't afford it.
So if you find yourself approaching the limits posted earlier, think long and hard about what you are trying to do, and make sure you're not doing it wrong.

link|flag
vote up 2 vote down

The whitepaper I found most useful was linked from the resource posted by user mbowles above. The direct link is...

http://go.microsoft.com/fwlink/?LinkId=95450&clcid=0x409

link|flag
vote up 0 vote down

Beware, the Performance of SiteDataQuery degrades heavily he more subsites you have. A hundred subsites can take 20 seconds to query.

link|flag
vote up 0 vote down

The "2000 limit" expressed above doesn't hold.

Please take a look at this document for more exact answers to your questions.

I personally experimented what the document describes.

link|flag
vote up 0 vote down

There is documented guidance for Microsoft® Office SharePoint® Server 2007 regarding the maximum size of lists and list containers. For typical customer scenarios in which the standard Office SharePoint Server 2007 browser-based user interface is used, the recommendation is that a single list should not have more than 2,000 items per list container. A container in this case means the root of the list, as well as any folders in the list — a folder is a container because other list items are stored within it. A folder can contain items from the list as well as other folders, and each subfolder can contain more of each, and so on. For example, that means that you could have a list with 1,990 items in the root of the site, 10 folders that each contain 2,000 items, and so on. The maximum number of items supported in a list with recursive folders is 5 million items.

link|flag
And please not there is a differance to what the documentation calls a root, and what the accepted answer calls a view. – JL Oct 7 at 19:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.