方案一:
SQL_Server_2005定期自动备份详细图解
http://www.doc88.com/p-146571749958.html
方案二:
详细参考:http://www.blogjava.net/rockblue1988/archive/2012/02/10/369749.html
DECLARE @strPath NVARCHAR(200)
set @strPath = convert(NVARCHAR(19),getdate(),120)
set @strPath = REPLACE(@strPath, ':' , '.')
set @strPath = 'F:\当前运维项目\数据库\数据库备份\撮合结算系统V5.1-数据库备份\' + 'VTS_ManagementCenterV5.1'+@strPath + '.bak'
BACKUP DATABASE [VTS_ManagementCenterV5.1] TO DISK = @strPath WITH NOINIT , NOUNLOAD , NOSKIP , STATS = 10, NOFORMAT