Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 Database Design and Application Architecture
 Question about hardware design

Author  Topic 

infrb
Starting Member

2 Posts

Posted - 2008-11-26 : 02:41:16
I have a server with 48 disks. 20 of those disks will be setup for SQL. The specs of the server are.

HP DL585 G5
128GB of RAM
48 146GB SAS Drives (8 internal, 40 external)
20 of those disks will be used for SQL on one P800 Controller
Another 20 will be used for another partition running another product that feeds into the SQL database
8 disks will be internal using its own P800 Controller

For disk design I'm thinking of:

C (8 disks in RAID 10): OS
D (20 disks RAID 10): Other product
E (20 disks RAID 10): SQL

Since all three drives are on their own separate array controllers, do I need to carve out separate partitions for Logs and TempDB? Isn't the bottleneck here the array controller, hence if I made separate RAID 10 arrays on the same controllers I wouldn't be getting any benefit of moving the logs and tempdb to another drive?

sodeep
Master Smack Fu Yak Hacker

7174 Posts

Posted - 2008-11-26 : 11:20:28
I would put TEMPDB and log files on its own partition.
Go to Top of Page

infrb
Starting Member

2 Posts

Posted - 2008-11-26 : 14:19:54
And in doing so, where should i be pulling those drives from? I can't pull them from the D:. So pull them from the 8 disks on C:? In essence giving me...

C: 4 disks in RAID 10
T (TempDB): 2 disks in RAID 10
L (Logs): 2 disks in RAID 10

Go to Top of Page
   

- Advertisement -