Viewing 10 posts - 1 through 10 (of 10 total)
SQLKnowItAll (2/2/2012)
It is the version of SSIS that you have installed on your machine., I believe. Not the server you are connecting to.
OK, I just have the one that...
February 2, 2012 at 1:30 pm
SQLKnowItAll (2/2/2012)
February 2, 2012 at 1:13 pm
Bru Medishetty (2/2/2012)
How are you saving the SSIS package, (from Bids or from SSMS or how?), that might help a little in troubleshooting..
I can't save it, it won't let me
Also,...
February 2, 2012 at 12:47 pm
TOP: CPU time = 1281 ms, elapsed time = 7777 ms, logical reads 223933 (ORDER_ITEM_DIM)
ROW_NUMBER: CPU time = 2000 ms, elapsed time = 15948 ms, logical reads 303216 (ORDER_ITEM_DIM)
TOP is...
January 31, 2012 at 11:37 am
I can use that, for sure, but it changes nothing really. Similar I/O counts and CPU time actually goes up. I'm attaching the plans for the two versions:
cross...
January 31, 2012 at 10:24 am
OK -- I get that now. So I added:
where rn=1 (so it would be included)
and removed the top 1, so I now looks like:
select nco.*, nci.ORDER_ITEM_ID o2
From OR_NCCore.dbo.Order_Dim...
January 31, 2012 at 9:52 am
Thanks for the insights! I have a question about your comment about the rn doing nothing though. My hope was that it would force the windowing so that...
January 31, 2012 at 9:26 am
OK , I've attached the two execution plans. Recall that I do a similar query two ways: 1 with join and one with cross apply. The produce identical results....
January 31, 2012 at 7:33 am
Hmmm.... replacing Having with Top 1...order by causes it to return Nulls for the max() for some rows -- not what I want. Here are the execution plans (couldn't...
January 30, 2012 at 9:19 am
I've been learning CROSS APPLY lately and found some interesting things. I have a query that can easily be written as a JOIN (Sorry, it seems my indentation is...
January 30, 2012 at 8:49 am
Viewing 10 posts - 1 through 10 (of 10 total)