Forum Replies Created

Viewing 15 posts - 5,281 through 5,295 (of 5,843 total)

  • RE: Are temp tables better than table variables

    Jeff Moden (3/19/2008)But, I do understand your points. I just haven't run into any of those problems in the last 11.5 years. First 1/2 year was a bugger...

  • RE: Are temp tables better than table variables

    If you have small datasets AND any joins you do to the table variable do not result in large numbers of joined rows, then you are perfectly OK. You...

  • RE: Are temp tables better than table variables

    The most common issue I have seen believe it or not is simply referencing a table UDF in a FROM clause. Anything more than a simple select therein (and...

  • RE: Are temp tables better than table variables

    Jeff, just so you (and everyone else) knows: :exclamation: UDF usage was an even GREATER cause of horrible performance than table variables at all 3 of those clients I...

  • RE: Are temp tables better than table variables

    The last 3 consecutive clients I have engaged with for performance tuning work have had the exact same problem: excessive use of table variables leading to poor performance. ...

  • RE: I/O Bound

    1) tune your queries and indexes to minimize I/O requirements

    2) check here for io stalls: sys.dm_io_virtual_file_stats

    3) watch perfmon avg disk sec/read and avg disk sec/write counters under physical...

  • RE: SQL 2005 Memory Problem

    Tim, I recommend calling Tivoli and asking if they have any known issue that could be causing this or a patch to address it. Then call Microsoft support (for...

  • RE: Opt File system block size SAP on 2k5

    4K is definitely suboptimal. Also very important (and another thing most miss just like using default cluster sizes on format) is to sector align the partitions.

  • RE: I got burned today at a SQL Server Interview!

    Of course, I got a good deal of attention in my last interview (for my current job) by putting my volunteer Online RPG Admin experience on my resume. It's...

  • RE: I got burned today at a SQL Server Interview!

    Hey, I didn't know you could proactively keep Murphy at bay by being randomly destructive yourself!! Perhaps I will give that a try - but I bet you would...

  • RE: Monthly SQL Crashes

    SP2 by itself is a bad place to be. I recommend applying at least CU4, if not 5 or 6. The paging out can be caused by a...

  • RE: I got burned today at a SQL Server Interview!

    Good one Grant -I especially like the radioactive rat poison part!! LOL

    I DO know about Murphy (can't be a pilot without knowing him and his nefarious activities)! That's...

  • RE: I got burned today at a SQL Server Interview!

    I guess someone has to play devil's advocate here, so here goes:

    Brandie, you are totally off the mark. Do whatever you can to make the most money so you...

  • RE: How to eliminate KeyLookUp in queryplan

    The order of the columns is critical to optimal index performance. It is usually appropriate to put the columns in order of specificity, assuming all 3 columns (or at...

  • RE: Storage estimation

    I would take a look at storing your files as just that - disk files. Then store the full path and filename in a database field. This will...

Viewing 15 posts - 5,281 through 5,295 (of 5,843 total)