SharePoint Lists vs Database Tables performance... - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:38:01Z http://stackoverflow.com/feeds/question/184653 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance 4 SharePoint Lists vs Database Tables performance... SharePoint Newbie 2008-10-08T20:12:40Z 2009-08-14T02:39:36Z <p>Hi,</p> <ol> <li>We are looking to store transactional data in SharePoint lists. The lists will easily grow to 100,000+ items.</li> <li>How would the query performance be compared with queries on a database table with these columns?</li> </ol> <p>Queries: Select by Id Select Where ColumnValue = X Group By OrderId Group By Date</p> <p>The SP List will be 6 columns wide: Id, Date, OrderId (Lookup), Quanity, ItemName, Title</p> <p>Kind regards, Ashish Shharma</p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/184671#184671 0 Answer by Troy Howard for SharePoint Lists vs Database Tables performance... Troy Howard 2008-10-08T20:17:00Z 2008-10-08T20:17:00Z <p>The SharePoint lists will be slower. </p> <p>More overhead = worse performance. </p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/184816#184816 9 Answer by Nat for SharePoint Lists vs Database Tables performance... Nat 2008-10-08T20:45:55Z 2008-10-10T00:27:27Z <p>Don't do it. SharePoint is not good at handling transactional data and will perform badly.</p> <p>Any abilities you might have to improve performance at the database level (like adding indexes) may have detrimental effects on the SharePoint installation (although columns in lists can be "indexed" through SharePoint.</p> <p>Essentially SharePoint is designed for a specific purpose (content/documents) and trying to get it to do something out of the ordinary means you have to fight the application tooth and nail.</p> <p>Fortunately SharePoint has several means of integrating transactional data into it.</p> <p>First off (if you have the more expensive Enterprise licence) you have the Business Data Catalog that allows you to import database values that will appear similar to list items.</p> <p>If you do not have the Enterprise licence, I can recommend either custom controls/webparts or the Data View Web Part to allow that data to be "shown" on the relevant pages within SharePoint.</p> <p>In summary: You will be setting yourself up for a lot of uneccesary work by storing transactional data within SharePoint compared to other application designs hosting the data in traditional database applications and integrating to SharePoint.</p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/185290#185290 0 Answer by Toni Frankola for SharePoint Lists vs Database Tables performance... Toni Frankola 2008-10-08T23:06:56Z 2008-10-08T23:06:56Z <p>+1 No</p> <p>SharePoint primarily function is collaboration. In your case you will just list the data as read-only. In your situation I would recommend to store the data into SQL DB, if you need to display it in SharePoint portal you can use BDC or something like Bamboo Data View web part. <a href="http://store.bamboosolutions.com/p-71-data-viewer-web-part.aspx" rel="nofollow">http://store.bamboosolutions.com/p-71-data-viewer-web-part.aspx</a></p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/185582#185582 3 Answer by Lloyd Cotten for SharePoint Lists vs Database Tables performance... Lloyd Cotten 2008-10-09T01:20:15Z 2008-10-09T01:20:15Z <p>I concur with all of the above comments. I've had extensive experience with customers who wanted to use SharePoint lists for things where they didn't fit. If you're worried about performance at all, then SharePoint lists are not the way to go. If it's simply for archival purposes and you are doing infrequent searches against the data and the SharePoint search features are sufficient for you, I might consider it and not dismiss it out of hand (if you're using MOSS). </p> <p>But I would consider all aspects of this carefully. It's not too difficult through Data Form Web Parts, and the BDC to get SQL server data into the SharePoint environment, but it is more difficult to get SharePoint data into other platforms or applications.</p> <p>And again, if performance is at all a requirement, then don't do it.</p> <p>For more SharePoint scalability and performance best practice information see: <a href="http://technet.microsoft.com/en-us/library/cc287790.aspx" rel="nofollow">http://technet.microsoft.com/en-us/library/cc287790.aspx</a></p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/185884#185884 4 Answer by Even Mien for SharePoint Lists vs Database Tables performance... Even Mien 2008-10-09T03:54:03Z 2008-10-10T03:59:51Z <p>The rule of thumb is to limit SharePoint lists to 2000 items for performance reasons. </p> <p>At 100k, the performance would go "from suck to blow".</p> <p>The only way that this could work is if you could segment the data set into multiple lists with less than 2000 in each.</p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/472874#472874 0 Answer by Andreas Grabner for SharePoint Lists vs Database Tables performance... Andreas Grabner 2009-01-23T13:29:38Z 2009-01-23T13:29:38Z <p>I also agree with the guys above However - a lot of the performance problems discussed in blogs are due to the fact that the SharePoint Object Model is not used correctly.</p> <p>You can checkout my blog series about SharePoint List Performance at dynaTrace Blog. This series looks into the SharePoint Object Model to highlight what is actually going on between the SharePoint Servers and the Content Database</p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/1052313#1052313 2 Answer by Ariel for SharePoint Lists vs Database Tables performance... Ariel 2009-06-27T07:35:12Z 2009-06-27T07:35:12Z <p>Of course, the proposed approach is not recommended.</p> <p>But, being in the subject, <a href="http://go.microsoft.com/fwlink/?linkid=95450&amp;clcid-0x409" rel="nofollow">here</a> is a good doc for large lists perf in WSS</p> http://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance/1275780#1275780 0 Answer by Bittercoder for SharePoint Lists vs Database Tables performance... Bittercoder 2009-08-14T02:39:36Z 2009-08-14T02:39:36Z <p>Having done this myself, I would say try to avoid it if possible! It's a minefield, especially after about 100,000 rows.</p> <p>Something that can end up biting you as well, is that the search crawler can start timing out trying to crawl really large lists - you can increase the time outs, but it's the beginning of a loosing battle.</p>