How can we help you today? How can we help you today?
Dowdian
The job ran last night in 45 minutes, right back where it aught to be. Thanks very much for your help with this issue. / comments
The job ran last night in 45 minutes, right back where it aught to be. Thanks very much for your help with this issue.
0 votes
Removing the ERASEFILES option brought the job run time right back down to normal, about 35 minutes. Any thoughts on where to go from here? / comments
Removing the ERASEFILES option brought the job run time right back down to normal, about 35 minutes. Any thoughts on where to go from here?
0 votes
Here's the command I'm using: DECLARE @exitcode int DECLARE @sqlerrorcode int exec master..sqlbackup N'-SQL "BACKUP DATABASES EXCLUDE [master, msdb, model] TO DISK = ''\\sqldata\data\SQLBackups\hprhsdata\backup\<AUTO>'' WITH NAME = ''<AUTO>'', DESCRIPTION = ''<AUTO>'', ERASEFILES = 7, COMPRESSION = 2, THREADS = 1"', @exitcode OUTPUT, @sqlerrorcode OUTPUT IF (@exitcode <>0) OR (@sqlerrorcode <> 0) BEGIN RAISERROR ('SQL Backup job failed with exitcode: %d SQL error code: %d', 16, 1, @exitcode, @sqlerrorcode) END It looks like the log files are too large to include in the post. I've included sections of two log files below. The first is from 01/23 and is typical of the performance I had seen up till then. The second is from 01/24 and shows the performance I've seen since then. If you 'd like to see the logs in their entirety, let me know and I can email them to you. ... 1/23/2007 2:53:17 AM: Backing up TelAll (full database) to: \\hprhsdata\Data\SQLBackups\HPRHSDATA\Backup\FULL_(local)_TelAll_20070123_025317.sqb 1/23/2007 2:53:17 AM: BACKUP DATABASE [TelAll] TO DISK = '\\hprhsdata\Data\SQLBackups\HPRHSDATA\Backup\FULL_(local)_TelAll_20070123_025317.sqb' WITH NAME = '<AUTO>', DESCRIPTION = '<AUTO>', ERASEFILES_ATSTART = 6, COMPRESSION = 2, THREADS = 1 1/23/2007 2:53:25 AM: Deleting old backup file: \\hprhsdata\Data\SQLBackups\HPRHSDATA\Backup\FULL_(local)_TelAll_20070117_024549.sqb 1/23/2007 2:55:32 AM: Backup data size : 77.938 MB 1/23/2007 2:55:32 AM: Compressed data size: 36.464 MB 1/23/2007 2:55:32 AM: Compression rate : 53.21% Processed 9880 pages for database 'TelAll', file 'TelAll_dat' on file 1. Processed 1 pages for database 'TelAll', file 'TelAll_log' on file 1. BACKUP DATABASE successfully processed 9881 pages in 3.397 seconds (23.826 MB/sec). -------------------------------------------------------------------------------- ... ... 1/24/2007 3:13:24 AM: Backing up TelAll (full database) to: \\hprhsdata\Data\SQLBackups\HPRHSDATA\Backup\FULL_(local)_TelAll_20070124_031318.sqb 1/24/2007 3:13:24 AM: BACKUP DATABASE [TelAll] TO DISK = '\\hprhsdata\Data\SQLBackups\HPRHSDATA\Backup\FULL_(local)_TelAll_20070124_031318.sqb' WITH NAME = '<AUTO>', DESCRIPTION = '<AUTO>', ERASEFILES_ATSTART = 6, COMPRESSION = 2, THREADS = 1 1/24/2007 3:44:07 AM: Backup data size : 75.625 MB 1/24/2007 3:44:07 AM: Compressed data size: 34.652 MB 1/24/2007 3:44:07 AM: Compression rate : 54.18% Processed 9584 pages for database 'TelAll', file 'TelAll_dat' on file 1. Processed 1 pages for database 'TelAll', file 'TelAll_log' on file 1. BACKUP DATABASE successfully processed 9585 pages in 3.314 seconds (23.691 MB/sec). -------------------------------------------------------------------------------- ... / comments
Here's the command I'm using:DECLARE @exitcode int DECLARE @sqlerrorcode int exec master..sqlbackup N'-SQL "BACKUP DATABASES EXCLUDE [master, msdb, model] TO DISK = ''\\sqldata\data\SQLBac...
0 votes