Forum Replies Created

Viewing 15 posts - 316 through 330 (of 687 total)

  • RE: Moving SQL 2005 Cluster with 2 Cluster Groups to standalone

    First question I'd ask the powers that be is, why? That's quite a bit of work to migrate from a clustered instance to a standalone, depending on configuration and database...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Pass! Thanks for the Help Guys

    Excellent! Congratulations!

    How about a review of how you studied and what you thought about the exam?

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Problem with CASE Statement

    Without seeing the query and table structure, I'd guess you're not grouping properly.

    SELECT

    count(*) totalsRecords,

    CASE WHEN ResCalc.DESC IN('Other','Other Causes') THEN 'Other' END Desc,

    sum(Amount) amount

    FROM <table>

    GROUP BY CASE WHEN...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: SQL server service account

    SELECT servicename, startup_type_desc, status_desc,

    last_startup_time, service_account, is_clustered, cluster_nodename

    FROM sys.dm_server_services OPTION (RECOMPILE);

    From someone's performance script. I'll source it when I find it again.

    Edit: Found it! Mr. Glenn Berry's wonderful script[/url].

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Please critique our SQL Server 2005 Backup Maintenance Plan

    GilaMonster (2/8/2012)


    Why 5 schedules for the log backups? Just one schedule (every 5 minutes, all day) would be easier and less confusing if you need to restore.

    What Gail said. One...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Configuring MSDTC on a cluster. Does it go on Shared Disk?

    Must be a shared disk and I've seen it requires a drive letter and won't work with a mount point (can't find a Microsoft link to confirm this).

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Little Help With Select Statement.

    I think your confusion is the assumption that server login = database principal (as noted by your join statement).

    Logins are indeed principals but not mapped to database user principals...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Talking baseball

    ha!

    I remember that commercial. Hilarious!

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Talking baseball

    wow!

    That's crazy... kind of reminds me of Carlos from The Benchwarmers. When they ask for proof of age and he holds up a crumpled piece of paper with "I AM...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Talking baseball

    Do you know how much they signed Darvish for?

    And Fielder, last I heard, was rumored to be pursued by the Nationals. People here would love that. Fielder, Strausburg, and that...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: CheckDB behavior

    so here's my test

    create database [78abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwx]

    ON PRIMARY

    (NAME = N'78', FILENAME = N'<location>\78.mdf',SIZE = 30MB , FILEGROWTH = 1024KB )

    LOG ON (NAME = N'78_log', FILENAME = N'<location>\78_log.ldf' , SIZE =...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: default thread subscription

    awesome!

    Gus gets an extra point!

    (I was notified of this winning reply by unwanted thread subscription notification of which I was grateful for just this one time)

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: copy data from tableA to B but not deleted records...

    Your first copy is a simple insert statement

    INSERT INTO table_b (<list of columns>)

    SELECT <same list of columns>

    FROM table_a

    For your next step, it sounds like you need a couple triggers.

    An...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: Talking baseball

    Interesting Sports Illustrated article discussing the steroid era and hall of fame voting. McGwire, Sosa, and Clemens will all be on the ballot next year.

    HoF chairman puts the era in...

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

  • RE: 2012 RC0 Failure

    Could it be a bad install file?

    Try downloading it again and see if that helps.

    ______________________________________________________________________________________________
    Forum posting etiquette.[/url] Get your answers faster.

Viewing 15 posts - 316 through 330 (of 687 total)