SharePoint Lists vs Database Tables performance... - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T11:38:01Zhttp://stackoverflow.com/feeds/question/184653http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/184653/sharepoint-lists-vs-database-tables-performance4SharePoint Lists vs Database Tables performance...SharePoint Newbie2008-10-08T20:12:40Z2009-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#1846710Answer by Troy Howard for SharePoint Lists vs Database Tables performance...Troy Howard2008-10-08T20:17:00Z2008-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#1848169Answer by Nat for SharePoint Lists vs Database Tables performance...Nat2008-10-08T20:45:55Z2008-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#1852900Answer by Toni Frankola for SharePoint Lists vs Database Tables performance...Toni Frankola2008-10-08T23:06:56Z2008-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#1855823Answer by Lloyd Cotten for SharePoint Lists vs Database Tables performance...Lloyd Cotten2008-10-09T01:20:15Z2008-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#1858844Answer by Even Mien for SharePoint Lists vs Database Tables performance...Even Mien2008-10-09T03:54:03Z2008-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#4728740Answer by Andreas Grabner for SharePoint Lists vs Database Tables performance...Andreas Grabner2009-01-23T13:29:38Z2009-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#10523132Answer by Ariel for SharePoint Lists vs Database Tables performance...Ariel2009-06-27T07:35:12Z2009-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&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#12757800Answer by Bittercoder for SharePoint Lists vs Database Tables performance...Bittercoder2009-08-14T02:39:36Z2009-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>