Viewing 15 posts - 17,311 through 17,325 (of 26,484 total)
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
Chad Crawford (1/20/2010)
January 20, 2010 at 12:03 pm
Chad Crawford (1/20/2010)
I can't claim credit for the settings - I copied them from a website/blog/forum somewhere I can't now find and luckly it worked for...
January 20, 2010 at 12:01 pm
I'm wondering if you are comparing apples to oranges.
How are you determining the first values (21 GB, 4 GB).
How are you determining the second value ~ 9 GB.
I see how...
January 20, 2010 at 11:07 am
Viewing 15 posts - 17,311 through 17,325 (of 26,484 total)