Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old June 17th, 2005, 07:44 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 218
Thanks: 0
Thanked 0 Times in 0 Posts
Default BACKUP file append

I have a script to backup by database that runs daily.

Code:
CHECKPOINT;

declare @filename varchar(1000)

set @filename = '..filepath..\MyDB - ' + CAST(DATENAME(dw,getDate()) as varchar) + '.backup'

BACKUP DATABASE MyDB
TO DISK = @filename
This names the backup files with the day of the week. That way I always have a week's worth of backups. However, these backup files are getting huge. I'm pretty sure that the files are getting appended, not overwritten.

That is, when "MyDB - Friday.backup" gets created, the data is appended to the file from the previous Friday - it doesn't outright replace it. Is there a way to overwrite the file?

Thanks in advance for your comments.

- - - - - - - - - - - - - - - - - - - - - - -
In God we trust, everything else we test.





Similar Threads
Thread Thread Starter Forum Replies Last Post
append a xml node from one file to another pravind XSLT 5 August 22nd, 2009 09:15 AM
FoxPro 2.5:How to append from a Pipe Delimted file ashu_from_india Other Programming Languages 0 August 21st, 2008 07:09 AM
Append to text file??? RinoDM HTML Code Clinic 3 June 16th, 2008 02:21 PM
append in xml file rapraj XML 3 October 11th, 2007 02:58 AM
Append Information to a XML file YoungLuke C# 2 July 26th, 2007 02:15 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.