But that's not all. Lets say you don't do TL backups, but you keep the size down - no biggie. You last did a DIFF backup at 1200AM. At 2 am, a user deletes a table by mistake. In between there were lots of transactions. When you restore, you can only get back up to and including the data on the last DIFF - 12AM. So you lose 2 hours of work.
Now, you are doing TL backups. The user deletes the table. You immediately put the database in SINGLE_USER mode. Do a TL backup. Now you restore the latest FULL backup, the latest DIFF backup, and any TL backups since the DIFF. BUT on the LAST TL restore, you use:
WITH STOPAT '2004-12-10 01:55:00'
now you have ALL the data back up to just before the user deleted the table.
If there aren't many transactions being done, or they are easy to redo, then TL backups/restores may not be important.
What does your situation call for? How much data can you afford to lose?
-SQLBill
Posting advice: FAQ481-4875