Forum Replies Created

Viewing 9 posts - 1 through 9 (of 9 total)

  • RE: Kanban

    Steve Jones - SSC Editor (4/7/2015)

    It's a work tracking item that I have. As I work, I move these through the status areas (queue, working, done). If I need to...

  • RE: What is the "same query"?

    One thing to consider is that if you turn on the configuration option "optimize for ad hoc workloads" none of these different queries get cached as ad-hoc plans, so the...

  • RE: Duplicates

    jan.heimdal (2/4/2015)


    This seems simpler to me:

    DELETE --or SELECT *

    FROM #DuplicateRow

    WHERE JobTitle = 'Editor' and datemodified < (SELECT MAX(datemodified) FROM #DuplicateRow WHERE JobTitle = 'Editor')

    Hmm, I'm agreeing more with...

  • RE: Drop Me? No, I Don't Think So

    Great question!

    As for the endpoint configuration I can confirm that yes, endpoints are created with the principal_id of the login creating them; we had a situation where a person left...

  • RE: Are There That Many GUIDs?

    Chiming in with my $0.02 here ...

    I have had experience with developers wanting to use GUIDs as PKs, and my argument against is very simple - the intent of a...

  • RE: Predict the outcome

    Tom Garth (7/15/2010)


    Chris Stewart-397033 (7/15/2010)


    Also in BOL under the CREATE TABLE entry is the following (partial) definition of IDENTITY (emphasis mine):

    IDENTITY

    Indicates that the new column is an identity column....

  • RE: Predict the outcome

    Also in BOL under the CREATE TABLE entry is the following (partial) definition of IDENTITY (emphasis mine):

    IDENTITY

    Indicates that the new column is an identity column. When a new row...

  • RE: Analysing a T-SQL Query

    An unusual situation occurred for me. The first time I ran the SELECT statement the plan was a Clustered Index Scan. Subsequent runs were the expected NC Index...

  • RE: Disabling Indexes

    Hi,

    Actually, disabling a nonclustered index deletes the physical index; only the definition is retained. Per BOL:

    "The index definition of a disabled index remains in the system catalog with no...

Viewing 9 posts - 1 through 9 (of 9 total)