Viewing 15 posts - 376 through 390 (of 518 total)
Clusters are not really complex things.
In a nutshell, there are Cluster Groups. You install SQL, and its resources get added to one of these groups that you specify. Then, through...
September 14, 2010 at 11:44 am
Go to cluster manager, right click the SQL group, and go to Move Group..that should put it back on Node A. Is that what you were asking?
September 14, 2010 at 11:39 am
WayneS (9/14/2010)
You might want to look at selecting the...
September 14, 2010 at 11:37 am
Ah..you're completely right. I looked it up and it looks like it's a 2008 feature. I wasn't aware of that. Sorry about sending you on a wild goose chase.
I guess...
September 14, 2010 at 11:32 am
Halcyon (9/14/2010)
September 14, 2010 at 11:08 am
Open up the maintenance plan, open up the task you're running that's failing, and then click the Databases dropdown, and you can select which databases the task runs against. At...
September 14, 2010 at 11:06 am
steveb. (9/14/2010)
torpkev (9/14/2010)
September 14, 2010 at 10:49 am
Halcyon (9/13/2010)
Sorry for highjacking the thread.Can I use a local machine drive for the temp db? and get the data & log files on SAN?
Well, I cannot 🙁
Nope..can't use local...
September 14, 2010 at 10:30 am
Are you using a login that has DBO to master?
It sounds like you just can't see the Sys schema..
September 14, 2010 at 10:24 am
In the maintenance plan where you select the databases, just check the box that says do not attempt on databases where status is not online.
I agree that it's silly that...
September 14, 2010 at 10:22 am
george sibbald (9/14/2010)
Ahem. The term active\active is soooooooo last year. What you have there is a multi instance cluster.
But is it a multi-instance active/passive cluster? Or active/active? Or passive/passive (oh...
September 14, 2010 at 10:20 am
Sure
DECLARE @LoginAudit TABLE (
ServerName nvarchar(255) DEFAULT @@servername,
Time smalldatetime,
ProcessInfo nvarchar(50),
Text nvarchar(1000)
)
INSERT INTO @LoginAudit (Time, ProcessInfo, Text)
EXEC sp_readerrorlog 0, 1, 'Login failed'
select top 20 ServerName, Time, Text from @LoginAudit
WHERE Time >...
September 14, 2010 at 10:17 am
It sounds like you could use DIFFERENCE()
Doing something like:
select difference('ROBERT','ROBART')
Returns 4, which means they are very similar
Whereas executing:
select difference('ROBERT','ROGER')
Returns 2, which means little similarity
And executing:
select difference('ROBERT','JASON')
Returns 0, which is nothing...
September 14, 2010 at 9:18 am
The setup is really no different than active/passive.
Just install two instances, and then move one over to the other node.
September 14, 2010 at 9:12 am
If someone is guessing/brute forcing your SA password, you have bigger issues...
I leave it enabled on my servers, but run a job every day that sends me the failed logins...
September 14, 2010 at 9:00 am
Viewing 15 posts - 376 through 390 (of 518 total)