Data files and log files are kept in separate disks of my database. If the disk which contains log files crashes, will it stop the database. What can be done in this situation to continue using the database.
In most cases it will cause an issue w/ SQL Server. You could put the DB in Simple mode until the log issue is resolved. Then you would perform a full backup of the DB and turn Simple mode back to Full.
It will cause major problems. The Transaction Log is used to keep track of all transactions that happen so that SQL Server can rollback any that are interrupted.
Even in SIMPLE recovery mode the transaction log is used. It's just that checkpoints are issued more often and the log file is automatically truncated. But you still need to have it.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.