Forum Replies Created

Viewing 15 posts - 4,381 through 4,395 (of 22,211 total)

  • RE: How to Upgrade T-SQL Skills

    Phil Parkin (9/27/2016)


    Try to solve the various T-SQL problems that other people post here ... and compare your solutions with those written by others. You'll learn a lot if you...

  • RE: Don't tell the boss

    Ed Wagner (9/26/2016)


    Exactly my point, but the chair is unnecessary. The image of you with the bat comes to mind. 😛

    They won't let me bring the bat to work...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (9/26/2016)


    HELLO! This is my new "must have".

    Shared it on Twitter. I think a few people may have hurt themselves attempting to order one.

  • RE: Don't tell the boss

    Ed Wagner (9/26/2016)


    That's the direction I was thinking. It isn't really hiding, but filtering. If I inundated my boss with every little detail of everything that ever happened,...

  • RE: Don't tell the boss

    xsevensinzx (9/26/2016)


    Grant Fritchey (9/26/2016)


    Thanks everyone for the feedback. I was hoping someone would come in and argue in favor of hiding information since it sometimes seems to be considered a...

  • RE: Don't tell the boss

    dmbaker (9/26/2016)


    Grant Fritchey (9/26/2016)


    Thanks everyone for the feedback. I was hoping someone would come in and argue in favor of hiding information since it sometimes seems to be considered a...

  • RE: Don't tell the boss

    kiwood (9/26/2016)


    First, I agree that monitoring all the things that can go wrong should be done. And hiding things is generally a bad idea.

    But let me play a little devil's...

  • RE: Don't tell the boss

    Thanks everyone for the feedback. I was hoping someone would come in and argue in favor of hiding information since it sometimes seems to be considered a valid position.

  • RE: Don't tell the boss

    call.copse (9/26/2016)


    "If you really can't fix the problem then,"

    Can't fix the problem? Does this situation really occur? Everything is fixable one way or another...

    If the issue is beyond someone's capabilities...

  • RE: SPID blocking frequently

    I would suggest setting up an Extended Events blocked process report. Here's a blog post[/url] on how to do it. You can also query sys.dm_exec_requests when the blocking is occurring...

  • RE: Statistics Question

    If I can afford a full scan, that's better. Absolutely.

  • RE: Statistics Question

    Mike Scalise (9/23/2016)


    Actually, not to belabor the topic, but would it seem reasonable to update all (non-index) statistics as part of the maintenance plan?

    So something like:

    1) DBCC CHECKDB

    2) Update all...

  • RE: Email alerts when server reboots

    What was it? A startup trigger or something else?

  • RE: Incrementing a varchar column

    Take a look at the SEQUENCE object. That's one way to have this without using IDENTITY. Plus, IDENTITY just using SEQUENCE under the covers anyway.

  • RE: When Is an Execution Plan Cached?

    ScottPletcher (9/22/2016)


    Also, be aware that some plans are never cached at all, for example, a trivial plan to satisfy "select * from table_name".

    Actually, trivial plans are stored in cache. You...

Viewing 15 posts - 4,381 through 4,395 (of 22,211 total)