Forum Replies Created

Viewing 15 posts - 5,686 through 5,700 (of 5,842 total)

  • RE: Seek advice on data model architecture

    Personally I think the worst thing from a performance standpoint is if you routinely add columns to existing table it will fragment the hell out of your storage of said...

  • RE: Random jump in CPU for specific stored procedure....

    Please also post execution parameters that cause 1000cpu and others that make it jump to 5000.  It could well be parameter sniffing and one or more situations cause it to...

  • RE: Seek advice on data model architecture

    1) I am at a loss to make a comment on the overall architecture here!!  Good luck with it . . . 🙂

    2) As for XML being overhead in a...

  • RE: How should I wite a JOIN with an empty table to get a non-empty result ?

    Take a look at COALESCE in BOL.  You may be able to use it in the WHERE clause (and other places as well) to get exactly the results you desire.

  • RE: INSERT and "out of memory"

    1) Get (MUCH) bigger hardware.

    or

    2) Use the query governor cost limit to prevent 'runaway' queries from executing.  In conjunction with this you may run a profiler to trap said calls...

  • RE: Performance of a simple INSERT

    The root cause of poor performance of the while-loop-no-tran solution is log flushes.  REALLY BAD from a performance standpoint.  Adding in explicit trans holds off on the flush until complete...

  • RE: dual core CPU and hyperthreading

    David Reed:  I had looked into the MCA and decided not to pursue it due to cost and the month+ onsite at Redmond.  I was hoping that SQL Ranger was...

  • RE: dual core CPU and hyperthreading

    Hey, how can I get to be one of those SQL Ranger type dudes?!?! 

  • RE: Query Tuning

    1) When you want help tuning a query, ESPECIALLY a complex one such as this, you simply MUST include table definitions (to include indexes and keys, etc) and table data...

  • RE: SQL Server 2000 and 2005 on one Server

    If I were the OPer, I would look for what has changed.  If something worked and now it doesn't, SOMETHING has been altered somewhere, somehow.

    I would check name resolution stuff...

  • RE: dual core CPU and hyperthreading

    Isn't Enterprise Edition 5 times as expensive as Standard??  That could be one reason for not upgrading! 🙂

    I actually don't know the answer to the 4CPU or 4Core question.  I...

  • RE: Temprary Table performance

    I thought that table variables, while created as an object in tempdb like a temp table, contain all their data in memory given that sufficient memory exists - at which time...

  • RE: dual core CPU and hyperthreading

    1) All but one of the numerous situations I have tested using hyperthreaded CPUs on SQL Server boxes resulted in OFF being faster - often significantly so.  The remaining situation...

  • RE: Temprary Table performance

    That's a bit too broad of a generalization, Irfan.  Table variables come with significant limitations that make them less performant than temp tables (when they are both used optimally).  Also,...

  • RE: Local Variable performance

    The actual overhead of the variables is essentially negligible, even for hundreds of them I would bet.  They are RAM and CPU constructs, and thus operate in the micro- and...

Viewing 15 posts - 5,686 through 5,700 (of 5,842 total)