User Rob - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:04:04Z http://stackoverflow.com/feeds/user/82389 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165383/optimal-raid-setup-for-sql-server/680365#680365 0 Answer by Rob for Optimal RAID setup for SQL server Rob 2009-03-25T05:48:57Z 2009-03-25T05:48:57Z <p>btw, where I work, they have a high end san, that does a tablescan in about 2 minutes. I broke up the drives into simple raid 1 sets, and let sql server handle the striping...not the san. 2 minutes dropped to 45 seconds.</p> <p>there are other articles on the net about this...its very hard to get raid 'true believers' to accept this, thats why I'm so emphatic, about this point.</p> http://stackoverflow.com/questions/165383/optimal-raid-setup-for-sql-server/680360#680360 0 Answer by Rob for Optimal RAID setup for SQL server Rob 2009-03-25T05:45:26Z 2009-03-25T05:45:26Z <p>Two things,</p> <p>The theory is RAID 1 gives you two drives for a read, but dont' think that equals two times the performance. As a matter of fact, it doesn't, usually the sequential read spee ends up being exactly the same as one drive. Surprising, but true....do real world tests, don't rely on theory.</p> <p>With that said, I would go with two RAID 1...but not as you said, one for OS, and the other for data. I would have some small OS partition on one of them, but definately give both raids to sql server for data. Give sql server all the sets you can.</p> <p>SQL Server can stripe across the pairs, you absolutely do not want to go with 0+1 despite what anyone here says. They are again looking at theoretical benchmarks, not understand that sql server can stripe all its data across the disks, and can do so in an optimized way. </p> <p>Raid 1 is just for data redundancy...other than that, give as much as you can to sql server, and let it do its thing...its very good at what it does.</p> <p>You have a 0+1 and break it into two raid 1....do real world testing, you'll be surprised at which is faster for sql server work.</p>