Forum Replies Created

Viewing 15 posts - 376 through 390 (of 518 total)

  • RE: SQL SERVER 208 FAILOVER CLUSTERING

    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...

  • RE: Please help=it's urgent,Cluster failoverd to node b.

    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?

  • RE: Combining the use of ROWNUMBER() for paging, with a search result record set

    WayneS (9/14/2010)


    Nope, not a limitation. It's only available for THE NEXT select/insert/update/delete statement. The one that it's failing on is the second statement.

    You might want to look at selecting the...

  • RE: Maint Plan Issues With Disabling Databases

    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...

  • RE: Log and Data placement on a SAN.

    Halcyon (9/14/2010)


    hi, yes I agree that it is a good way of doing it, but if you have the LUNS arranged over one array of disks, then isn't it defying...

  • RE: Maint Plan Issues With Disabling Databases

    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...

  • RE: What login should a DBA use for non-emergency work

    steveb. (9/14/2010)


    torpkev (9/14/2010)


    My biggest annoyance with sa - quite outside of this discussion - is those people who use sa to connect to the database because they don't know...

  • RE: Log and Data placement on a SAN.

    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...

  • RE: Cannot execute system stored procedure sp_msforeachdb

    Are you using a login that has DBO to master?

    It sounds like you just can't see the Sys schema..

  • RE: Maint Plan Issues With Disabling Databases

    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...

  • RE: SQL SERVER 208 FAILOVER CLUSTERING

    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...

  • RE: What login should a DBA use for non-emergency work

    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 >...

  • RE: Help with query

    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...

  • RE: SQL SERVER 208 FAILOVER CLUSTERING

    The setup is really no different than active/passive.

    Just install two instances, and then move one over to the other node.

  • RE: What login should a DBA use for non-emergency work

    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...

Viewing 15 posts - 376 through 390 (of 518 total)