Let's assume that I perform a full backup on Saturday night and it is successful. On Sunday morning I perform a reindexing of our database and as a result this reindexing activity causes a lot of changes to our database. I know that this reindexing is done by 6:30AM and sometimes we have people come in at 8:00 on Sunday to do some work. So I was thinking of performing two of these in a row:
Backup Log 'database name' to 'log backup device' with Init.
The first one will perform a backup of all of the transactions resulting in a large transaction log backup file but it looks like the 2nd one actually makes the transaction log backup small and initializes it.
Then, after these are complete, I can now start running:
Backup Log 'database name' to 'log backup device' with NOINIT
since there is now activity that I want to keep (people actually performing transactions)...
I am just trying to think of the best way to remove those re-indexing transactions from by transaction log backup as soon as I can so I don't have to move this huge file off to tape. Any suggestions would be appreciated...
Regards,
Bessebo
Backup Log 'database name' to 'log backup device' with Init.
The first one will perform a backup of all of the transactions resulting in a large transaction log backup file but it looks like the 2nd one actually makes the transaction log backup small and initializes it.
Then, after these are complete, I can now start running:
Backup Log 'database name' to 'log backup device' with NOINIT
since there is now activity that I want to keep (people actually performing transactions)...
I am just trying to think of the best way to remove those re-indexing transactions from by transaction log backup as soon as I can so I don't have to move this huge file off to tape. Any suggestions would be appreciated...
Regards,
Bessebo