does anyone know how to get a diffential backup to stay as an archive? I am looking to get a diffential backup on my DB every 2 hrs. I have Logs every 20 min. The full backup is once a night.
I can see the time stamps on the logs and full DB files.
When I run the Diff backup I get either a LARGE file that continually grows (noinit) or it is overwriten every time I run it. (init) Here is the sql Statement I am using:
BACKUP DATABASE [DB1] TO DISK = N'\\UNCPATH TO BACKUP LOCATION\FILENAME.diff' WITH INIT , NOUNLOAD , RETAINDAYS = 1, DIFFERENTIAL , NAME = N'DB1 backup', NOSKIP , STATS = 10, NOFORMAT
I can see the time stamps on the logs and full DB files.
When I run the Diff backup I get either a LARGE file that continually grows (noinit) or it is overwriten every time I run it. (init) Here is the sql Statement I am using:
BACKUP DATABASE [DB1] TO DISK = N'\\UNCPATH TO BACKUP LOCATION\FILENAME.diff' WITH INIT , NOUNLOAD , RETAINDAYS = 1, DIFFERENTIAL , NAME = N'DB1 backup', NOSKIP , STATS = 10, NOFORMAT