Viewing 15 posts - 17,311 through 17,325 (of 26,489 total)
tosscrosby-60625 (1/20/2010)
Lynn Pettis (1/20/2010)
I'll see if one of my kids can make up a certificate for you. They seem better at that sort of stuff then me. 😉
Isn't that...
January 20, 2010 at 2:12 pm
Potentially a permissions issue on the share you are backing up to. The service account running the agent service may not have the needed permissions to write to that...
January 20, 2010 at 2:09 pm
Please read the first article I have referenced below in my signature block regarding asking for assistance. Please follow the instructions in that article and provide us with table...
January 20, 2010 at 1:54 pm
dma-669038 (1/20/2010)
January 20, 2010 at 1:46 pm
Please, I am not disagreeing with Gail. We need to look at each situation and make the appropriate decisions, after all, isn't that why we make the BIG $$$$?
January 20, 2010 at 1:31 pm
The flip side to that coin is thinking you are indispensable by not passing on knowledge to coworkers and less experienced team members. By passing on your knowledge you...
January 20, 2010 at 1:25 pm
See a pattern below:
SELECT
@aerialStatus = case when p.AerialBy IS_MEMBER null
...
January 20, 2010 at 1:13 pm
Sorry, i use the native sql backup with HyperBac. Can't help you with the Redgate product, not familiar with it.
I do have a suggestion, use it to backup to...
January 20, 2010 at 12:50 pm
Try this:
SELECT @aerialStatus = case when p.AerialBy IS_MEMBER null then'red' else 'green' end FROM Prospects p WHERE ProID = @ProID ;
select @aerialStatus;
January 20, 2010 at 12:47 pm
No, your not. I understand fully that you shouldn't restart a SQL Server instance or server. All I am saying is it really is an "It depends" thing....
January 20, 2010 at 12:42 pm
Partly answered my questions. You may have experienced a network issue during the backup. It is recommended that you complete your backups to a local disk resource and...
January 20, 2010 at 12:36 pm
GilaMonster (1/20/2010)
Ignacio A. Salom Rangel (1/20/2010)
Good point Lynn, but I still will restart the server first!
Depends on what the exact error is. Cases like this, where it's a file that...
January 20, 2010 at 12:33 pm
shripati (1/20/2010)
You can try this steps:
Truncate the log file --- and shrink it to minimum size possible.
This is the code...
USE DatabaseName
GO
DBCC SHRINKFILE(<TransactionLogName>, 1)
BACKUP LOG <DatabaseName> WITH TRUNCATE_ONLY
DBCC SHRINKFILE(<TransactionLogName>, 1)
GO...
January 20, 2010 at 12:26 pm
dba_neo (1/20/2010)
My Backup job have faile dwith the following error.
BACKUP failed to complete the command BACKUP DATABASE [T1] TO VIRTUAL_DEVICE = 'SQLBACKUP_23C612B2-3FB4-4AE2-AE44-88D91328CC35' WITH BUFFERCOUNT = 6, BLOCKSIZE = 65536,...
January 20, 2010 at 12:17 pm
Viewing 15 posts - 17,311 through 17,325 (of 26,489 total)