Viewing 15 posts - 5,281 through 5,295 (of 5,843 total)
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...
March 19, 2008 at 12:48 pm
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...
March 19, 2008 at 10:32 am
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...
March 18, 2008 at 3:37 pm
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...
March 18, 2008 at 11:50 am
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. ...
March 18, 2008 at 10:36 am
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...
March 17, 2008 at 10:11 am
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...
March 13, 2008 at 1:27 pm
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.
March 12, 2008 at 7:49 am
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...
March 12, 2008 at 7:35 am
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...
March 7, 2008 at 9:49 am
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...
March 7, 2008 at 9:30 am
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...
March 7, 2008 at 9:27 am
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...
March 7, 2008 at 9:02 am
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...
March 7, 2008 at 8:30 am
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...
March 7, 2008 at 8:01 am
Viewing 15 posts - 5,281 through 5,295 (of 5,843 total)