Viewing 8 posts - 1 through 8 (of 8 total)
Yes definitely these solutions would use SSIS to move data. I currently have option one working via SSIS. The merge is done using plain t-sql though.
December 9, 2010 at 11:18 pm
Sweet thanks Jeff! 🙂
May 31, 2010 at 2:52 pm
Thanks for commenting Jeff. I actually got my result from the The ‘Subscription List’ SQL Problem but since the part I used is essentially the same as your post I...
May 31, 2010 at 12:07 pm
ColdCoffee was on the money the "quirky update" method worked a treat. Thanks ColdCoffee!
Here is the complete solution
declare @calc integer
declare @data table(
thedate datetime,
...
May 31, 2010 at 7:59 am
The real world calculation is Cumulative Performance which I can post the formula on Monday. The only complexity for me lies on the fact that I need the previous rows...
May 30, 2010 at 1:30 am
Unfortunately performance is not great. If I bump up the test case to 3K rows its 1 second for cursor based approach and 15 seconds for recursive cte.
May 28, 2010 at 6:01 am
Thanks "SSC Eights!" but this wont for larger datasets due the heavy recursion.
May 28, 2010 at 4:01 am
forgot to state this is not a running total issue, this is contrived example of much more complex financial calculation.
May 28, 2010 at 3:21 am
Viewing 8 posts - 1 through 8 (of 8 total)