Forum Replies Created

Viewing 15 posts - 2,731 through 2,745 (of 9,399 total)

  • RE: Query plan analysis

    I'd say that a plan containing an implicit cast points to a bad query. The plan itself isn't bad (or misunderstood) but the query that generated it is one...

  • RE: emails not being sent

    Actually, you can send an email with a NULL body. I'd start with msdb.dbo.sysmail_mailitems. Find your rows where the email is sent and that should tell you where...

  • RE: Today's Random Word!

    Ray K (8/16/2016)


    Ed Wagner (8/16/2016)


    whereisSQL? (8/16/2016)


    HappyGeek (8/16/2016)


    Grumpy DBA (8/16/2016)


    Y.B. (8/16/2016)


    Pop

    Soda

    Water

    Ice

    Broken

    Wings

    Hot

  • RE: Today's Random Word!

    whereisSQL? (8/16/2016)


    HappyGeek (8/16/2016)


    Grumpy DBA (8/16/2016)


    Y.B. (8/16/2016)


    Pop

    Soda

    Water

    Ice

    Broken

  • RE: Today's Random Word!

    whereisSQL? (8/16/2016)


    The Dixie Flatline (8/16/2016)


    ThomasRushton (8/16/2016)


    whereisSQL? (8/16/2016)


    Grumpy DBA (8/16/2016)


    djj (8/16/2016)


    Rocket

    Richard

    Canada

    Dry

    Martini

    Cherry

    Peach

  • RE: Need query for After Trigger on update,delete

    ScottPletcher (8/16/2016)


    Ed Wagner (8/16/2016)


    ScottPletcher (8/16/2016)


    Jeff Moden (8/15/2016)


    ScottPletcher (8/15/2016)


    Jeff Moden (8/15/2016)


    ScottPletcher (8/15/2016)


    Jeff Moden (8/15/2016)


    Also, you should probably avoid auditing inserts. It's an unnecessary duplication of data because even if there's...

  • RE: A Slower Job

    Eric M Russell (8/16/2016)


    Ed Wagner (8/16/2016)


    Eric M Russell (8/16/2016)


    It would be useful to have an experienced gray haired DBA who could offer technical assistance and architectural advice across any number...

  • RE: A Slower Job

    Eric M Russell (8/16/2016)


    It would be useful to have an experienced gray haired DBA who could offer technical assistance and architectural advice across any number of projects, more like an...

  • RE: Need query for After Trigger on update,delete

    ScottPletcher (8/16/2016)


    Jeff Moden (8/15/2016)


    ScottPletcher (8/15/2016)


    Jeff Moden (8/15/2016)


    ScottPletcher (8/15/2016)


    Jeff Moden (8/15/2016)


    Also, you should probably avoid auditing inserts. It's an unnecessary duplication of data because even if there's never an update,...

  • RE: Japanese language woes with non-unicode columns

    To the best of my knowledge, once the data is stored in the varchar column, there's no way to translate it into the original Unicode characters. Sure, you could...

  • RE: Primary and Foriegn Keys on Temp Tables

    Nice question. It illustrates a good point. Thanks.

  • RE: Today's Random Word!

    The Dixie Flatline (8/15/2016)


    Ed Wagner (8/15/2016)


    whereisSQL? (8/15/2016)


    Y.B. (8/15/2016)


    Manic Star (8/15/2016)


    HappyGeek (8/15/2016)


    Luis Cazares (8/15/2016)


    whereisSQL? (8/15/2016)


    Revenant (8/15/2016)


    Ray K (8/15/2016)


    Ed Wagner (8/15/2016)


    djj (8/15/2016)


    Grumpy DBA (8/15/2016)


    djj (8/15/2016)


    Ed Wagner (8/15/2016)


    Sweet

    Treat

    Trick

    Joke

    Puzzle

    Jigsaw

    Tools

    Power

    Unlimited

    Opportunities

    Scam

    Spam

    Eggs

    Ham

    Pork

    Chop

  • RE: Finding data that does not exist in another table

    Another approach that uses an ITVF, only it uses the EXCEPT set operator instead:

    if object_id('dbo.NotPurchased', 'if') is not null drop function dbo.NotPurchased;

    go

    CREATE FUNCTION dbo.NotPurchased(@UserID Nchar(10)) RETURNS TABLE WITH SCHEMABINDING

    AS

    ...

  • RE: IF EXISTS error

    Hello and welcome to SSC. What error does it throw?

  • RE: Need query for After Trigger on update,delete

    ScottPletcher (8/15/2016)


    Jeff Moden (8/15/2016)


    Also, you should probably avoid auditing inserts. It's an unnecessary duplication of data because even if there's never an update, the original data lives in the...

Viewing 15 posts - 2,731 through 2,745 (of 9,399 total)