Forum Replies Created

Viewing 15 posts - 3,406 through 3,420 (of 6,486 total)

  • RE: SAN best practices

    GilaMonster (5/8/2008)


    Storage take blame for a poorly performing database? What universe are you in? 😉

    I know, I know.... I keep hoping to catch up with the tooth fairy - that...

  • RE: SAN best practices

    GilaMonster (5/8/2008)


    Does anyone have any best practice documents/white papers on SAN configuration for SQL Server?

    I'm having a rather large fight with the storage team, who want to give me non-dedicated...

  • RE: Running Total variable resolution

    I see Jeff has already smacked himself on the hand about using the assignment syntax for aliasing, so I won't pile on...:)

    It's actually in the "deprecated file" called...

  • RE: Recognizing Talent

    Wayne West (5/7/2008)


    Someguy (5/7/2008)


    ...Apparently this company thinks that allowing me the honor of being a walking billboard for their marketing wing is sufficient incentive to pay too much money for...

  • RE: how to skip update on a record if it already exist???

    well - you could simply filter your update statement to not update those rows.

    Or you could have a BEFORE UPDATE trigger that catches and prevents the "bad values" from being...

  • RE: New Database Creation Prepopulates with Objects from Existing Database

    Are those objects in your Model database? That's what gets used as the template for new databases, so any objects in Model at the time you create a new...

  • RE: Writing Triggers in SQL2000

    davidthegray (5/6/2008)


    Matt,

    Then you should start firing your lighter.

    See this sample:

    CREATE TRIGGER ToyInventory_UPDATE ON ToyInventory AFTER UPDATE

    AS

    DECLARE @rcnt int

    SET @rcnt=@@ROWCOUNT

    IF @rcnt=0 RETURN

    IF @rcnt > 1 BEGIN

    RAISERROR('You may only change...

  • RE: SQL 2005 Licensing

    I'd agree with the assessment that #2 is a multiplexing scenario. #1 might be interesting though. Depending on what Server B does (or rather doesn't do) with that...

  • RE: User Defined Function Execution

    Derek Dongray (5/7/2008)


    janine.rawnsley (5/7/2008)


    Hmm I know exactly how UDF's work given that I write/use them but this question must have been worded really badly (for me).

    "SELECT UDF FROM Table" -...

  • RE: Row Level Data

    sudhakara (5/6/2008)


    i want retrieve the data from data base files not from table . each row has one unique row key ,if blacking happen its showing that row id...

  • RE: The "Numbers" or "Tally" Table: What it is and how it replaces a loop.

    What - only 12 useful tips? in a single article?:hehe:

    Stop it now - you're setting the bar too high for the rest of us....

    (superlative as usual).....

  • RE: Tally Table

    Sergiy (5/6/2008)


    Matt Miller (5/6/2008) I just didn't think Sergiy knuckled under to office politics...:hehe::w00t:

    Well, I'm probably lucky, but I'm not THAT lucky.

    I'm not sure there is any scientific proof that...

  • RE: Recognizing Talent

    I do hope in a way that they get that deal back together. There is a definite need to have at least 2 viable 1600-lb gorillas going at it...

  • RE: Tally Table

    Jeff Moden (5/6/2008)


    I don't know about Sergiy, but the only big advantage I've found is that I don't have to convince reluctant DBA's into having two helper tables. I...

  • RE: Tally Table

    Just curious. I like having the utility tables like Tally - but is there a value in having all of those things in a SINGLE table? to do...

Viewing 15 posts - 3,406 through 3,420 (of 6,486 total)