SQL Server Files Local or NAS or SAN?

NAS Definitely not NAS for SQL Server. SMB/CIFS does not have adequate support for file locking to support a DBMS (at least it didn’t a few years ago, ca. 2002-2003). Note that NFS does and you can actually do this with Oracle on an NFS server. However, SQL Server on a CIFS share is not … Read more

Cheapest iSCSI SAN for Windows 2008/SQL Server clustering?

Consider whether you really need hot failover. If you’re worrying about price at the level of an entry level SAN then consider whether you really have a business case for that recovery model. How expensive is your downtime for an outage? If the cost of an outage justifies the cost of a decent SAN, buy … Read more

SQL Server disk design on an ISCSI SAN

Logs and data drives have different data access patterns that are in conflict with each other (at least in theory) when they share a drive. Log Writes Log access consists of a very large number of small sequential writes. Somewhat simplistically, DB logs are ring buffers containing a list of instructions to write data items … Read more