How can we help you today? How can we help you today?
martin
We do transaction logs once an hour, so it might have been jobs running at the same time. So far there has only been this one occasion, so no alarmbells going off yet :-) Regards, Martin / comments
We do transaction logs once an hour, so it might have been jobs running at the same time. So far there has only been this one occasion, so no alarmbells going off yet :-) Regards, Martin
0 votes
I have the same issue. 25 Servers imported and 10 of them has SQLBackup running on it. The CPU will hoover around 65% with a huge cut into memory. We run with 14 months of backup history. Regards, Martin / comments
I have the same issue. 25 Servers imported and 10 of them has SQLBackup running on it. The CPU will hoover around 65% with a huge cut into memory. We run with 14 months of backup history. Regards, ...
0 votes
Hello. We have something similar. On our cluster, we had the following failure last night. This is a dedicated SQL Server 2000, sp3, hotfixed up to 8.00.923. It is running on a windows 2003 box (Build 3790: Service Pack 1), and has 3.8GB Memory, where SQL Server is allowed to grab 2.1GB for itself. Around this time (according to our perfmon stats), there is a very small beat on Memory\Page Faults/sec, but it does not seem to be out of the ordinary compared to other days. SQL Backup log file 21/03/2007 9:00:19 PM: Backing up DATABASE_NAME (full database) to: E:\Backups\Database\DATABASE_NAME.sqb 21/03/2007 9:00:19 PM: BACKUP DATABASE [DATABASE_NAME] TO DISK = 'E:\Backups\Database\DATABASE_NAME.sqb' WITH NAME = 'Complete Backup - DATABASE_NAME', DESCRIPTION = '<AUTO>', INIT, PASSWORD = 'XXXXXXXXXX', KEYSIZE = 256, COMPRESSION = 1 21/03/2007 9:00:34 PM: VDI error 1010: Failed to get configuration from server. Check that the SQL Server instance is running, and that you have the SQL Server Systems Administrator server role. Error code: (-2139684861: The api was waiting and the timeout interval had elapsed.) 21/03/2007 9:00:35 PM: SQL error 3013: BACKUP DATABASE is terminating abnormally. 21/03/2007 9:00:35 PM: 21/03/2007 9:00:35 PM: Memory profile 21/03/2007 9:00:35 PM: Type Maximum Minimum Average Blk count Total 21/03/2007 9:00:35 PM: 21/03/2007 9:00:35 PM: Commit 231751680 4096 0 5669 -1450278912 21/03/2007 9:00:35 PM: Reserve 4911104 8192 41126 4552 187207680 21/03/2007 9:00:35 PM: Free 167907328 4096 822886 230 189263872 21/03/2007 9:00:35 PM: Private 231751680 4096 0 9515 -1340833792 21/03/2007 9:00:35 PM: Mapped 4128768 4096 167310 72 12046336 21/03/2007 9:00:35 PM: Image 9928704 4096 103653 634 65716224 21/03/2007 9:00:35 PM: 21/03/2007 9:00:35 PM: 21/03/2007 9:00:35 PM: Warning 300: Backup failed. Retry attempt: 1 21/03/2007 9:00:37 PM: BACKUP DATABASE [DATABASE_NAME] TO DISK = 'E:\Backups\Database\DATABASE_NAME.sqb' WITH NAME = 'Complete Backup - DATABASE_NAME', DESCRIPTION = 'Backup on 21/03/2007 9:00:19 PM Server: SERVER_NAME Database: DATABASE_NAME', INIT, PASSWORD = 'XXXXXXXXXX', KEYSIZE = 256, COMPRESSION = 1 21/03/2007 9:27:26 PM: Backup data size : 62.539 GB 21/03/2007 9:27:26 PM: Compressed data size: 15.981 GB 21/03/2007 9:27:26 PM: Compression rate : 74.45% Processed 8154728 pages for database 'DATABASE_NAME', file 'DATABASE_NAME_Primary' on file 1. Processed 42223 pages for database 'DATABASE_NAME', file 'DATABASE_NAME_LOG' on file 1. BACKUP DATABASE successfully processed 8196951 pages in 1606.758 seconds (41.791 MB/sec). Verifying the file will only make the "verify process" hang... in other words it does nothing. Any ideas? From what I can tell, SQL Server is not running low on memory (?) Regards, Martin / comments
Hello. We have something similar. On our cluster, we had the following failure last night. This is a dedicated SQL Server 2000, sp3, hotfixed up to 8.00.923. It is running on a windows 2003 box (Bu...
0 votes
Asked before I was thinking!! I fond this (modified now) in the documentation declare @datestamp varchar&#40;30&#41; declare @databasename varchar&#40;200&#41; declare @backuppath varchar&#40;500&#41; declare @filename varchar&#40;500&#41; declare @backupstring varchar&#40;1000&#41; declare @failcount int declare @failflag int create table #resultstring &#40;message varchar &#40;2500&#41;&#41; set @failflag = 0 set @backuppath = 'E:\DBBACKUP\SQLBackup\' set @databasename = 'pubs' set @datestamp = left&#40;replace&#40;replace&#40;replace&#40;convert&#40;varchar&#40;30&#41;, getdate&#40;&#41;, 120&#41;, '-', ''&#41;, ' ', ''&#41;, ':', ''&#41;, 12&#41; set @filename = @backuppath + @databasename + '_db_&#40;full&#41;_' + @datestamp + '.sqb' set @backupstring = '-SQL "BACKUP DATABASE &#91;' + @databasename + '&#93; TO DISK = ''' + @filename + ''' WITH NAME = ''Database &#40;' + @databasename + '&#41; Full'', ERASEFILES_ATSTART = 1, COMPRESSION = 1" -E' insert into #resultstring exec master..sqlbackup @backupstring select @failcount = count&#40;*&#41; from #resultstring where patindex&#40;'%error%', message&#41; &gt; 0 if @failcount &gt; 0 begin set @failflag = 1 end else begin insert into #jobresults &#40;message&#41; values &#40;'Backup succeeded: ' + @databasename&#41; end drop table #resultstring if @failflag = 1 begin RAISERROR &#40;'Backup failed to complete successfully', 16, 1&#41; end Regards, Martin / comments
Asked before I was thinking!! I fond this (modified now) in the documentation declare @datestamp varchar&#40;30&#41; declare @databasename varchar&#40;200&#41; declare @backuppath varchar&#...
0 votes