Forum Replies Created

Viewing 15 posts - 12,436 through 12,450 (of 22,214 total)

  • RE: Perfomance slow of the sql server 2005

    Performance tuning is a large topic. Gail Shaw has some excellent articles[/url] on Simple-Talk. I'd start there. Once you've got those under your belt, pick up a copy of my...

  • RE: sp_who2 only CPU increases no change in I/O

    So don't use sp_who2. That's the old approach anyway. Dive into the DMOs and get lots of good information.sys.dm_exec_requests will show you what's currently running. You can combine that with...

  • RE: Are the posted questions getting worse?

    Roy Ernest (5/27/2011)


    WayneS (5/27/2011)


    GilaMonster (5/27/2011)


    Precon and spotlight! Could this PASS Summit get any better?

    So, you're aiming for a keynote address now?

    Along with Dr DeWitte

    She'll probably start correcting him.

  • RE: How To change Date in Master Table when Make insert or update in Child Table???

    Your trigger needs to be on the child table and it needs to say "UPDATE Parentable..." in order for the parent table to be updated.

  • RE: How To change Date in Master Table when Make insert or update in Child Table???

    Modify the procedure that updates the child table so that it also updates the parent table. That'd be my first approach. You could also look at setting up a trigger...

  • RE: Query performance - 3 part name

    I'd check the execution plans. Something has to be changing there. I'm not a fan of cross-database queries anyway.

  • RE: parallelism

    Especially on a reporting system I would not suggest ditching parallelism. Usually reporting systems get the most help from parallelism.

    However, if you've done the research and you're getting excessive waits...

  • RE: Server Performance

    You have to do the hard slog. Gather performance metrics, capture wait stats, get the longest running and most frequently called queries, then start addressing the issues. There are extremely...

  • RE: When Execution Plans are the Same

    Everyone has hit a lot of the highlights, I especially like checking the SELECT operator properties to see the compile & runtime values on params & the reason for early...

  • RE: Recompilation and CPU issues

    Fraggle-805517 (5/26/2011)


    Grant Fritchey (5/26/2011)


    You're still guaranteed a recompile each time a temp table is created and first referenced.

    Grant,

    I understand that I will get recompile each time a temp table is...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (5/26/2011)


    Grant Fritchey (5/26/2011)


    Brandie Tarvin (5/26/2011)


    Gotta love a query that, when executed, complains about a non-existent table but then, when you look at your code, you're not even calling...

  • RE: Recompilation and CPU issues

    Fraggle-805517 (5/26/2011)


    Grant Fritchey (5/26/2011)


    You're still guaranteed a recompile each time a temp table is created and first referenced.

    Grant,

    I understand that I will get recompile each time a temp table is...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (5/26/2011)


    Gotta love a query that, when executed, complains about a non-existent table but then, when you look at your code, you're not even calling this non-existent table.

    I'm not...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/26/2011)


    One very uncomfortable PM sent...

    From the posts the person has made, they are totally out of their depth. 6TB DBs, major perf problems and barely a clue.

    How do people...

  • RE: Are the posted questions getting worse?

    Roy Ernest (5/26/2011)


    Gianluca Sartori (5/26/2011)


    Brandie Tarvin (5/26/2011)


    GilaMonster (5/26/2011)


    Roy Ernest (5/26/2011)


    I have an idea for one of persons who want to go to SQL Pass summit for free (Except air travel)....

Viewing 15 posts - 12,436 through 12,450 (of 22,214 total)