Some guys where I work are setting up a new database server for SQL Server. The server has a system drive that also stores backups and a single RAID 5 array for the database files. The RAID 5 array is logically partitioned into 2 drives. One is for the actual database files (MDF) and the other is for the transaction logs (LDF). The quoted reason is best practices.
My question is whether this extra partitioning is pointless. Is there any purpose to having the database and trans logs on different logical partitions if they are still sharing the same physical resources? I understand there are some great reasons for separating the database and trans log files on to two physically separate disks. For instance, speed and disaster recovery should be improved. However, I can't think of any benefits that aren't negated by the lack of physical separation. I don't know enough about RAID to know for sure.