In: Computer Science
State two reasons why it is advisable to place the transaction log on a separate disk device from the actual data?
Keeping transaction logs a separate disk
Placing the logs on separate disk:
Placing the transaction log on the same device as the data itself may cause reliability issues that both create database and alter database require the use of the with override option to out transaction log on the same device as the data itself.The log device can experience significant I/O on system with heavy update activity.
If your log and data are on the same database devices. The extents allocated to store log pages are not contiguous. Log extents and data extents are mixed. When the log is on its own device , the extents tend to be allocated sequentially.
Reducing disk head movements, thereby maintaining a higher I/O rate.