Storing SQL Server System Databases On A Seperate Drive

sql-server-2008

Is it worth moving the SQL Server system databases master, model and msdb from the default install path on the main OS hard drive over to their own drive?

I've already moved TempDB on to 2 separate drives one for the log file and one for the data file and am just wondering if its worth doing the same to the other system database or if this is overkill and will see little to no benefit?

Best Answer

I see not reason for moving them at all -- they are small DBs that are cached in memory pretty much all the time. You are not going to make changes very often in those DBs (writes) to have them moved to another drive to gain some additional performance.

Related Topic