Forum Replies Created

Viewing 15 posts - 2,911 through 2,925 (of 14,953 total)

  • RE: Real Time Dangers

    I've never met a computer yet that had any sort of judgement or wisdom, but we do keep trusting more and more decisions to them.

    This has good and bad aspects...

  • RE: Are the posted questions getting worse?

    Jan Van der Eecken (11/8/2011)


    GSquared (11/8/2011)


    Roy Ernest (11/8/2011)


    Hey everyone, I am hijacking the thread with an "Off Topic"

    I am planning on a presentation for my user group "DBA MythBusters" (Courtesy...

  • RE: Never offend a captive audience

    Manie Verster (11/6/2011)


    I honestly do not understand why people, in any sphere of life, has to spice their words with swearing and bad language. It is bad taste.

    I grew up...

  • RE: Are the posted questions getting worse?

    Roy Ernest (11/8/2011)


    Hey everyone, I am hijacking the thread with an "Off Topic"

    I am planning on a presentation for my user group "DBA MythBusters" (Courtesy Paul Randal) His idea is...

  • RE: Are the posted questions getting worse?

    L' Eomot Inversé (11/7/2011)


    Gianluca Sartori (11/7/2011)


    Totally different topic: this thread asks how to format datetime values in T-SQL.

    I think this is a very bad habit to kick and I...

  • RE: Something you could never do in sql server

    PaulB-TheOneAndOnly (11/5/2011)


    GSquared (11/4/2011)


    ... I had a rollback command once that took over a week to finish. On a command that had been running for about 30 seconds.

    Most probably something...

  • RE: Calculating YTD values

    Compare the execution plans for the Cross Apply and the join to a list of months.

  • RE: FAST_FORWARD cursor blocking issue

    You guys do realize that selecting into a table variable, and then running a cursor on the table variable, is pretty much what a Static cursor does all by itself,...

  • RE: identify insert

    Are you setting identity_insert in the same session as the insert statement? That's the scope it's got.

  • RE: Something you could never do in sql server

    Actually, I have seen cases where simple looking queries would run for days at a time.

    Heck, I had a rollback command once that took over a week to finish. ...

  • RE: Convert table into XML

    The values that aren't in the table, like ProcessID, where do they come from? Or are those static?

    Other than that, it looks like:

    select *

    from dbo.ArrayOfStudentMoveSummary

    for XML path('StudentMoveSummary'), type

    That would...

  • RE: constant variable

    Build a table with constants in it.

    Move it to a read-only filegroup, so that it avoids locks/blocks/et al, in terms of contention.

    Select from it when you need to use a...

  • RE: ETL

    Revenant (11/4/2011)


    GSquared (11/4/2011)


    . . . Nothing wrong with building your own .NET solutions, but frequent breaks in an SSIS package should be cause for re-examination of how the package...

  • RE: Concatenating negative number

    The problem isn't the concatenation. It's the use of "RETURN".

    The Return operator can only return an integer value. It's supposed to be an error code or similar item.

    That's...

  • RE: Are the posted questions getting worse?

    SQLRNNR (11/4/2011)


    What is this query plan operator?

    8-bit cactus

Viewing 15 posts - 2,911 through 2,925 (of 14,953 total)