Forum Replies Created

Viewing 15 posts - 6,856 through 6,870 (of 7,597 total)

  • RE: Any chance of success?

    The only real "success" is for the 3rd party hack cashing the checks. Anyone trying to implement or maintain this system is, as "The Big Bang Theory" put it,...

  • RE: Computed column with/with out PERSISTED

    Jeff Moden (1/28/2013)


    My personal opinion is that if you're not going to persist a calculated column, write a derived table or view, instead. That way, no one can screw...

  • RE: Foreign Keys,Deadlocks, Partioning,OLTP ......what is the best setup?

    Just curious:

    How did you determine that the deadlocking was due to FK lookups?

    Legitimate FKs should be used when possible. FK definitions in SQL itself are vastly more efficient...

  • RE: How to find if a job ran successfully?

    ScottPletcher (1/25/2013)


    MyDoggieJessie (1/25/2013)


    And Yes, changing the job name itself would still cause an issue, however hopefully changes like that would be made by a DBA or otherwise communicated that a...

  • RE: How to find if a job ran successfully?

    MyDoggieJessie (1/25/2013)


    And Yes, changing the job name itself would still cause an issue, however hopefully changes like that would be made by a DBA or otherwise communicated that a change...

  • RE: How to find if a job ran successfully?

    MyDoggieJessie (1/25/2013)


    newdba_sql (1/25/2013)


    Yeah... For somereason I was putting job name but not the job id......:w00t:

    So this script will check if the job's last run status is successful, then it will...

  • RE: where fldValue=123 vs join to table with one row

    Sean Pearce (1/25/2013)

    PLEASE NOTE: You have not aliased all your columns so I have no idea which tables they come from. You must edit the following queries to remove any...

  • RE: Subtracting specific dates from today

    Of course if you just code your dates as 'YYYYMMDD', conversion always works, and you don't have to waste a second on any of that other garbage.

  • RE: Computed column with/with out PERSISTED

    SQL* (1/23/2013)

    What is the need of computed column if we can do the same thing in the query/application?

    The two big advantages of computed columns are:

    1) a consistent definition;

    2) defined in...

  • RE: Computed column with/with out PERSISTED

    Lowell (1/24/2013)


    i thought it was clear: i read it as howard saying there is no need to mark an calculated column as persisted in order to index it...it's not a...

  • RE: Killed clustered index creation, running out of space

    An extraordinarily large table (which I'll abbreviate "xlt" for convenience) can indeed cause unusual issues.

    If you use tempdb, it needs (lots of) extra disk space, which basically can't be freed...

  • RE: Subtracting specific dates from today

    Steven Willis (1/24/2013)To prevent unexpected errors, you should validate your dates. And the ISDATE function is not a reliable method for such validation.

    ISDATE() is reliable for what it claims to...

  • RE: Killed clustered index creation, running out of space

    Marius.D (1/24/2013)


    TempDB seems to be always full, maybe I'll reboot first.. thanks!

    Then you've got a second issue that needs addressed! 🙂

    Increase the size of tempdb until you have "slack" except...

  • RE: Computed column with/with out PERSISTED

    HowardW (1/24/2013)


    ScottPletcher (1/24/2013)


    HowardW (1/24/2013)


    ScottPletcher (1/24/2013)


    HowardW (1/24/2013)


    There's no need to make the column persisted prior to indexing it.

    That's not necessarily always true. You might persist a column if its...

  • RE: Computed column with/with out PERSISTED

    HowardW (1/24/2013)


    ScottPletcher (1/24/2013)


    HowardW (1/24/2013)


    There's no need to make the column persisted prior to indexing it.

    That's not necessarily always true. You might persist a column if its requires significant...

Viewing 15 posts - 6,856 through 6,870 (of 7,597 total)