SharePoint 2010 - List View Threshold: What Does Not Cause a Threshold?

In SharePoint 2010, we have a list view threshold that is 5000 by default, and:

Indicates the maximum number of list or library items that can perform database operations, such as a query, at the same time outside the daily time window specified by the administrator during which the queries are unlimited.

So, I'm looking to define query parameters for a document library that will have more elements than the threshold limit.

Ignoring the "unlimited" time window of time will trigger the threshold in the following scenarios in the document library with more than 5000 positions?

  • Using CAML queries in WebParts Content Query for indexed columns without page-by-page results (Answer: Yes)
  • Using CAML queries in Content Query Web sites for indexed columns, paginated results, 100 per page (Answer: if using ContentIterator, No. Otherwise, Yes / Possible (depending on the extraction method))
  • Using the search API for indexed or non-indexed columns (Answer: No)
+3
source share

Source: https://habr.com/ru/post/1770592/


All Articles