I have everyday schedule to backup my database in sqlserver 2005. Now it's looks like this:
BACKUP DATABASE [db1] TO DISK = N'D:\SqlServer\Backup\db1.bak' WITH NOINIT , NOUNLOAD , NAME = N'db1backup', NOSKIP , STATS = 10, NOFORMAT
But in this case, it's will grow infinitely and I want to store only last 7 backups in file. How can I do that(maybe erase old backups somehow)?