I once had the pleasure of attending a presentation at SEUGI in Florence where the ideal setup of disk storage for SAS was the main theme, and I took the following with me: If you have a SAN, it is the responsibility of the SAN manager to provide you with enough throughput; can't do much yourself there. If you work with local disk storage, consider the following: Is an outage in the DWH service caused by a failed disk tolerable? If not, always use some kind of mirroring, RAID 1 preferred (the fastest method for writing), starting with 2 disk adapters across which you place the mirrors. Try to saturate the adapter's maximum throughput with disks. Out of the old SCSI days: adapter supports 320M/sec, disks deliver 40m/sec -> 8 disks per adapter; set up striping so that all disks work in parallel and every access causes all disks (in a logical group) to work. Set up several physically independent volumes and assign those as "special work" libraries. This allows you to do MERGE's where SAS reads infile 1 from disk (group) A, infile 2 from disk (group) B and writes outfile to disk (group) C. You'll be suprised what you can gain with that. Set the UTILLOC so that it points to a different disk (group) than WORK. This prevents disk contention when doing a sort. Most of this applies to magnetic storage, SSD's avoid many of the problems caused by latency and seek times, alleviating the effects of disk contention.
... View more