First the database needs to be in full recovery.
Right click on your database and select properties.You can create a maint plan to backup the log.
Check the recovery model on the options page.
If it is not already Full recover then you need to change it.
Next create a maint plan to backup your transaction log.
You will need to determine what is the max amount on data/time that you could loose for the schedule. 5 , 10, 30 minutes? I have my t-log backups to run every 30 minutes. This means the most data I could loose would be 30 min worth.
Another way (This is how I do it.)
Create a backup device
Backup your log to the backup device so you'll have one device with multiple backup sets in it.
You have to init the device after the full backup completes.
You should also consider moving you backup log files off the server to a t-log share on another server. This is just another safe guard so you don't loose your point in time backups.
- Paul
- If at first you don't succeed, find out if the loser gets anything.