Comments
Sort by recent activity
Would the value of MemToLeave affect this by chance since redgate routines appear to be external stored procedures? / comments
Would the value of MemToLeave affect this by chance since redgate routines appear to be external stored procedures?
Looks like our IT department didn't specify a max memory, setting SQL Server to have a max of 29G of the 32G on the system.
Not sure if that will do it, but not finding a lot of definitive information on the subject. / comments
Looks like our IT department didn't specify a max memory, setting SQL Server to have a max of 29G of the 32G on the system.
Not sure if that will do it, but not finding a lot of definitive informat...
Set Threads to 3, MAXTRANSFERSIZE to 960 on the LOG backup only.
A reply from RedGate would be nice so I could stop taking stabs in the dark at this. / comments
Set Threads to 3, MAXTRANSFERSIZE to 960 on the LOG backup only.
A reply from RedGate would be nice so I could stop taking stabs in the dark at this.
I've tried reducing threads. Still get these errors. A second attempt (as specified for the backup job to do) is successful. Just doing a LOG backup at this point.
Threads are down to 2 and MAXTRANSFERSIZE is 1024.
Going to attempt to move the MAXTRANSFERSIZE down just a notch to see what happens. Not sure why a chunk of memory cannot be found in 3GB of free memory.
Does 6.2 address any of these issues??
2009-09-10 14:00:01.27 spid291 Error: 18210, Severity: 16, State: 1.
2009-09-10 14:00:01.27 spid291 BackupVirtualDeviceSet::Initialize: Request large buffers failure on backup device 'SQLBACKUP_FCBD0467-A16F-4C07-B32F-B2B1674D3188'. Operating system error 0x8007000e(Not enough storage is available to complete this operation.).
2009-09-10 14:00:01.27 spid291 Error: 18210, Severity: 16, State: 1.
2009-09-10 14:00:01.27 spid291 BackupVirtualDeviceSet::Initialize: Request large buffers failure on backup device 'SQLBACKUP_FCBD0467-A16F-4C07-B32F-B2B1674D3188'. Operating system error 0x8007000e(Not enough storage is available to complete this operation.). / comments
I've tried reducing threads. Still get these errors. A second attempt (as specified for the backup job to do) is successful. Just doing a LOG backup at this point.
Threads are down to 2 and MAXT...
As per my previous post, it just doesn't like running from the network.
If there is some glitch in the software that prevents this, at least update the error message to not be so generic that it provides not clue to the user as to what to attempt to resolve. / comments
As per my previous post, it just doesn't like running from the network.
If there is some glitch in the software that prevents this, at least update the error message to not be so generic that it pr...
Apparently the licensing activation/deactivation tools don't like running from a network share.
You might want to fix that. / comments
Apparently the licensing activation/deactivation tools don't like running from a network share.
You might want to fix that.
I have run command below while this backup does nothing in case you need any information out of the log.
EXEC master..sqbutility 9997
I'll try and run a command line version backup since I have seen other issues running things from the GUI here recently. / comments
I have run command below while this backup does nothing in case you need any information out of the log.
EXEC master..sqbutility 9997
I'll try and run a command line version backup since I have see...
Looks like a fulltext was in a state that did not like redgate. Rebuilt the index and I'm working now.
Be nice if redgate could diagnose stuff like this with the utility. / comments
Looks like a fulltext was in a state that did not like redgate. Rebuilt the index and I'm working now.
Be nice if redgate could diagnose stuff like this with the utility.
Ran the following, but still nothing is processed:
declare @exitcode int, @sqlerrorcode int
EXECUTE master..sqlbackup N'-SQL "BACKUP DATABASE [stage_s1] TO DISK = ''M:\BACKUPS\STAGE_S1_PRESNAPSHOT.sqb'' WITH COMPRESSION = 3, THREADCOUNT = 2, VERIFY"', @exitcode OUT, @sqlerrorcode OUT
print '@exitcode ' + str(@exitcode)
print '@sqlerrorcode ' + str(@sqlerrorcode)
Fifteen minutes of running and nothing processed:
exec sqbstatus
Database Login Processed (bytes) Compressed (bytes)
stage_s1 me 0 0
(1 row(s) affected) / comments
Ran the following, but still nothing is processed:
declare @exitcode int, @sqlerrorcode int
EXECUTE master..sqlbackup N'-SQL "BACKUP DATABASE [stage_s1] TO DISK = ''M:\BACKUPS\STAGE_S1_PRESNAPSHOT....