Is it possible to do a full database backup on a database that is currently replicating using log shipping, without breaking the chain of logs? Can I do a full database backup without truncating the log and still pick up the data in the log on the next tlog backup?
Here is a sample of what I am using for full backups
--full backup
BACKUP LOG ADVFP WITH TRUNCATE_ONLY
BACKUP DATABASE [ADVFP] TO DISK = N'G:\CurrentBackups\ADVFP20030327172527.bkp' WITH INIT
--tlog backups subsequent to full backup
BACKUP LOG ADVFP TO DISK = N'G:\TLogBackups\ADVFP20030327172745.trn' WITH INIT, NO_TRUNCATE