Viewing 15 posts - 46 through 60 (of 94 total)
Junior_DBA (11/23/2008)
Which are the principal differences between mirroring and cluster?....I look them both similar...
Clustering, like mentioned earlier, is more for uptime. If one machine fails for any reason, the...
November 24, 2008 at 9:09 am
Just when you think you're done...another road block!
I want to save the results to a table, so changed it to the following:
DECLARE @ServerName nvarchar(30)
DECLARE @sql nvarchar(max)
set @ServerName = '[server-a\testdb]'
set @sql...
November 17, 2008 at 2:11 pm
My only question now is, did you verify it's reading the drives on THAT server and not the one you ran it from?
Sure did. In my case it...
November 17, 2008 at 6:54 am
It worked!!!! Actually, the key was using dynamic sql. This is the end result..
DECLARE @ServerName nvarchar(30)
DECLARE @sql nvarchar(100)
select @ServerName = '[server-a\testdb]'
set @sql = @servername + '.master.dbo.xp_fixeddrives'
exec(@sql)
Thank you for...
November 14, 2008 at 1:06 pm
Thank you for the info! I will try this now and let you know.
November 14, 2008 at 1:00 pm
Jonathan Kehayias (11/12/2008)
What is running when the stack dump generates?
I could not tell what was running from any of the logs and it only happened once.
I will review the link...
November 12, 2008 at 1:51 pm
No, CLR is not enabled.
November 12, 2008 at 12:36 pm
You can tell by clikcing Start->All Programs->Microsoft SQL Server 2005. If you see SQL Server Management Studio in the list, then you have client tools installed.
October 23, 2008 at 2:24 pm
Thank you. What's the best way to contact them?
October 15, 2008 at 2:05 pm
Ok, most of what you said is out of my area of expertise, so I will have to get help on it. That being said, I am able to...
October 3, 2008 at 12:38 pm
I'm trying to determine the difference between a differential backup and a transaction log backup (as stated previously, SS only has differential, not incremental)
October 2, 2008 at 2:34 pm
That's a good question! I thought I knew the answer to it, but I think not?
transaction log backup - backs up the transaction log (which holds transactions since the...
October 2, 2008 at 2:06 pm
If you are asking if folders on the server are shared out that I can access, the answer is yes.
October 1, 2008 at 1:00 pm
Viewing 15 posts - 46 through 60 (of 94 total)