Question

What is the data collection limit for Sharepoint? I am storing data to a Sharepoint list submitted through the form (NinText form).

I am expecting about 6525 list entries (or aka *365 round 145 rows required each day. There is about 43 Correctional Centres 2.4million list entries.

Is there a limit to the number of list entries that a SharePoint can have?

I am using Sharepoint on-premise (aka not the online version).

And, then on another page, I am traversing through the list data as below. I feel like traversing 2.4 million list entries would make this slow! Any suggestions?

            $.get(siteUrl + "/_vti_bin/owssvr.dll?Cmd=Display&XMLDATA=TRUE&List=" + listId, function(xml) {
                zrow = xml.getElementsByTagName("z:row");
                for(var i=0; i<zrow.length; i++) {
Was it helpful?

Solution

according to the official Software Boundaries on Microsoft Docs we're only talking about a supported count of items within a content databased and thresholds for views, crawled and indexed items not about boundaries of list entries. So possible problems you may face are about searching and indexing not about list item count.

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