Viewing 15 posts - 3,136 through 3,150 (of 3,957 total)
capn.hector (7/26/2012)
so now that jeff has posted his response shall the SSC Dog Pile commence??
Good idea. I was utterly dumbstruck by his performance ranking of the rCTE solution to...
July 26, 2012 at 8:09 pm
Jeff Moden (7/26/2012)
ChrisM@Work (7/26/2012)
WayneS (7/26/2012)
You'll might find this interesting: http://www.sqlperformance.com/2012/07/t-sql-queries/split-stringsVery interesting. Thanks, Wayne.
I know I enjoyed it. Gave me a chance to try out my new 4 band porkchop...
July 26, 2012 at 7:45 pm
thomasrichardson2000 (7/26/2012)
got it sorted.
Glad you got it sorted. If you're interested in a way to generate a depreciation schedule (including accumulated depreciation, which was the value you were seeking),...
July 26, 2012 at 7:00 pm
Brandie Tarvin (7/26/2012)
dwain.c (7/25/2012)
Jeff Moden (7/25/2012)
July 26, 2012 at 6:27 pm
Gert,
Now that I've looked, I'm not sure I understand what the remaining question is.
It appears that your second query is correctly using CROSS APPLY VALUES to UNPIVOT the flat table...
July 25, 2012 at 7:05 pm
Gert,
I'm taking a look now.
Had a bit of a problem getting your last posted script to run. You had this (in the second SELECT):
FROM dbo.bo_MatchResult
And I had to change...
July 25, 2012 at 6:53 pm
Jeff Moden (7/25/2012)
July 25, 2012 at 6:28 pm
BrainDonor (7/25/2012)
A nice solution dwain - it would never have crossed my mind to try that.
Actually, it's a technique that I don't think has widespread knowledge. I hit upon...
July 25, 2012 at 2:06 am
edward_hall76 (7/24/2012)
Here is the script for the database.
I think you may have forgotten to include the attachment?
July 24, 2012 at 9:11 pm
The code you posted is likely to perform better than any looping/dynamic script you can create.
If you just want to do it as an exercise, that's fine. But for...
July 24, 2012 at 8:25 pm
Not sure why you're hard coding the Feb date into your queries. The "effective date" should already be in a Rates table.
As Koen suggests, post your DDL and sample...
July 24, 2012 at 8:15 pm
OK apology accepted.
The real question is do you have something that works and does it perform satisfactorily?
July 24, 2012 at 8:11 pm
If you provide DDL and sample data for your PO Header and Detail tables, I or someone else can make short work of this and give you a tested solution.
July 24, 2012 at 8:05 pm
I'm using the cross tab approach and it's quite easy to construct with copy and paste.
Read my mantra and avoid loops when they're not necessary. It is better to...
July 24, 2012 at 8:00 pm
After only minor fixes to your DDL and sample INSERT, I propose the following as your solution instead of UNPIVOT.
CREATE TABLE #Test
(
ProductID INT NULL,
Name NVARCHAR(50),
ProductNumber NVARCHAR(25),
MakeFlag BIT null,
FinishedGoodsFlag BIT null,
Color...
July 24, 2012 at 7:32 pm
Viewing 15 posts - 3,136 through 3,150 (of 3,957 total)