Viewing 15 posts - 2,296 through 2,310 (of 8,416 total)
Brandie Tarvin (12/15/2010)
Paul White NZ (12/15/2010)
December 15, 2010 at 8:38 am
Stefan Krzywicki (12/15/2010)
It contains no duplicate values. Is there any difference in using EXISTS in that case?
Yes and no. :pinch:
There would be no difference between the results from a query...
December 15, 2010 at 8:23 am
Stefan Krzywicki (12/14/2010)
December 15, 2010 at 4:07 am
Read the following blog entry by Conor Cunningham (Principal Software Architect, SQL Server Engine at Microsoft):
TOP 100 PERCENT...ORDER BY Considered Harmful
That explains everything you need to know about this issue.
For...
December 15, 2010 at 2:18 am
LutzM (12/15/2010)
What would it help in Craigs scenario to lock the door, dim the light and ignore the ringing bell? :unsure: 😀
The last thing Craig needs right now is kids...
December 15, 2010 at 1:50 am
Craig,
For the deletes, use this:
DELETE psa
FROM #DelPortList AS dpl WITH (TABLOCKX)
JOIN PortSecAgg AS psa WITH (TABLOCKX)
ON psa.PortfolioID = dpl.PortfolioID
AND psa.AsOfDate = dpl.AsOfDate
OPTION...
December 14, 2010 at 11:16 pm
Ninja's_RGR'us (12/14/2010)
Any reason why you don't do disable instead of drop to avoid the hassle of keeping that script synchronized?
I've written it both ways in different scenarios.
Wouldn't it be nice...
December 14, 2010 at 9:28 am
WayneS (12/14/2010)
December 14, 2010 at 8:38 am
No worries. Have fun with it! I've enjoyed this thread, but I have some writing to do now. I'll stay subscribed to the thread just in case...
December 14, 2010 at 12:38 am
I think I'm going to tackle these one piece at a time. As strong as the partitioning structure sounds like it may be, I want to get baselines before I...
December 13, 2010 at 11:40 pm
I'm curious as to why my existing clustered index on PortSecAgg, which is based AsOfDate/PortfolioID/hanging columns doesn't do the same thing, as a range removal. However, because each data file...
December 13, 2010 at 11:32 pm
Having said I think it's best to keep things simple and skip the partition-switching with the delta loads, I see you asked about determining the partition number for the T1...
December 13, 2010 at 11:11 pm
On the question of processing a single item at a time.
It should be clear that processing complete new-day files one at a time makes sense. By one at a...
December 13, 2010 at 10:55 pm
Turning to your previous long post, Craig. First up, the sorting and column data types and nullability:
The idea of sorting the SSIS output on the clustered index keys of...
December 13, 2010 at 10:29 pm
Viewing 15 posts - 2,296 through 2,310 (of 8,416 total)