Forum Replies Created

Viewing 15 posts - 11,146 through 11,160 (of 22,214 total)

  • RE: bad performance quary

    The function, is a multi-statement table valued function? If so, eliminating that may be the best bet for tuning the query.

    To share a plan, save it as a .SQLPLAN file...

  • RE: slow running query until DBCC FREEPROCCACHE

    If you have really severe data skew, you need to evaluate it. Is the situation such that there are a few bad possibilities? If so, you can look to use...

  • RE: Reduce Query Execution Time

    You're doing JOIN to other views. That is one seriously problematic model. I strongly recommend against it. You're shooting the optimizer right in the foot before asking it to...

  • RE: Data that should be included in performance report

    That's a very large topic. I have one chapter of my performance tuning book focused on the important metrics you need to collect. I really don't want to replicate the...

  • RE: troubleshoot--SP--TSQL optimized for 2000k

    Stats get created any time a column is referenced in a WHERE or JOIN criteria. It doesn't necessarily mean anything.

    I would take any and all suggestions from the DTA with...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (4/5/2012)


    Grant Fritchey (4/5/2012)


    Yeah, I feel for him. I've had WAY too many arguments with people demanding that I rearrange the laws of physics because they said so.

    If I...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (4/5/2012)


    SQLRNNR (4/4/2012)


    GilaMonster (4/4/2012)


    Who feels like doing the impossible? http://www.sqlservercentral.com/Forums/Topic1278455-391-1.aspx

    A lot of attitude on that one.

    I think the attitude comes from a lot of frustration.

    Yeah, I feel for him....

  • RE: Reading data from the Transaction Log?

    anthony.green (4/5/2012)


    couple of things and sorry if you cant do this either but you only detail no changes to the current databases.

    could you not create a secondary version of the...

  • RE: Reading data from the Transaction Log?

    I'd probably go with using extended events to audit the changes, but I can see how that might be difficult to see what's changed when, etc.

    So, let's think outside the...

  • RE: Treat the Database like Code

    call.copse (4/5/2012)


    This is one area I do find hard to make easy. I do agree it has to be done absolutely but getting a team of people to use a...

  • RE: slow running query until DBCC FREEPROCCACHE

    Make sure your statistics are up to date is about your only option in SQL SErver 2005.

    In 2008 or better you can start looking at filtered indexes, plan guides, other...

  • RE: Query Behaviour

    I don't understand the statement "not get anything in the execution plan." What are you expecting to get? The values in the execution plan regarding cost are only estimates based...

  • RE: SQL Profiler

    You just have to load it in smaller chunks and make sure your transaction log backups are running often enough (if the database is in FULL recovery). We use to...

  • RE: Why so fast .. or is it, why so slow?

    Without setting up the tests, I can't tell you why. But... I can tell you where to look.

    Check out both execution plans. In fact, you don't have to rerun the...

  • RE: Query Behaviour

    While that query is simple, as you've illustrated, the optimizer is probably going to be able to rearrange the structure so that you're getting a good clean JOIN. But, as...

Viewing 15 posts - 11,146 through 11,160 (of 22,214 total)