Hi All
I am doing a program where at the end of everyday there is a backup.
BACKUP DATABASE [BASE] TO DISK = @path WITH NOFORMAT, NOINIT, NAME = N'BASE-Full Database Backup', SKIP, NOREWIND, NOUNLOAD, STATS = 10
I am wondering if it is correct or advised that I clear the log before that backup is run. Mainly because if I need to restore I do so and point to the database. Is there an instance where I will need the log between these points?