Viewing 15 posts - 14,536 through 14,550 (of 22,211 total)
Simply moving them to a seperate file will get you some, very moderate, performance gains, but moving them to their own disk will help a ton. But, it's still best...
August 4, 2010 at 8:56 am
One of these must be returning zero:
SUM(TotalMaterialValue) / SUM(TotalQuantityMade) AS AverageMaterialCost,
SUM(TotalLabourValue) / SUM(TotalQuantityMade) AS AverageLabourCost,
SUM(TotalOverheadValue) / SUM(TotalQuantityMade) AS AverageOverheadCost,
SUM(TotalTotalValue) / SUM(TotalQuantityMade) AS AverageTotalCost,
SUM(TotalTimeBookedMinutes) / SUM(TotalQuantityMade) AS AverageTimeInMinutes,
SUM(TotalTimeBookedHours) / SUM(TotalQuantityMade) AS...
August 4, 2010 at 8:47 am
You can use a variable on an insert, but there has to be a column to insert it into. You can't just throw it in as a placeholder.
And yes, it's...
August 4, 2010 at 8:30 am
I doubt there's an article out there comparing the two because they aren't really something you compare. Here's the BOL entry for max degree of parallelism and degree of parallelism....
August 4, 2010 at 8:28 am
Because you're working with 2000, this will be harder, but what you need to do is analyze the wait states and queues to figure out what you're slowing down on....
August 4, 2010 at 8:24 am
Brandie Tarvin (8/4/2010)
Grant Fritchey (8/4/2010)
August 4, 2010 at 8:11 am
Complete agreement with Gail. Rather than knock yourself about moving the index locations (you just have to recreate the indexes and reference the new file or filegroups using the ON...
August 4, 2010 at 6:40 am
No, you can't do that. Not that way. A variable is just a place holder and is not resolved into TSQL on the fly. What you can do, and I...
August 4, 2010 at 6:36 am
Jeff Moden (8/4/2010)
Grant Fritchey (8/4/2010)
August 4, 2010 at 6:30 am
Brandie mentioned SSIS, which is SQL Server Integration Services. It's the built-in SQL Server ETL (Extract/Transform/Load) tool. She was suggesting that if they could deal with day old data, to...
August 4, 2010 at 6:29 am
The max degree of parallelism and having multiple files for your tempdb are not directly related. One has to do with file storage, the other has to do with how...
August 4, 2010 at 6:22 am
If they need live access you just have to set up a connection either direct through ADO (or whatever) or using another tool such as the Oracle Gateway (it used...
August 4, 2010 at 6:20 am
DealerID is being supplied from the original file, right? That's where you get it. Presumably you can join back to the original file with the address information to get the...
August 4, 2010 at 5:30 am
Steve Jones - Editor (8/3/2010)
Jack Corbett (8/3/2010)
WayneS (8/3/2010)
August 3, 2010 at 12:55 pm
It is possible, just thinking about it, for the NULL values to mess you up though. An ORDER BY statement that is working on NULL values could get those values...
August 3, 2010 at 12:39 pm
Viewing 15 posts - 14,536 through 14,550 (of 22,211 total)