Viewing 15 posts - 1 through 15 (of 22 total)
I am sorry I re-Read my original post and i was unclear.
I want individual LineitemNumbers per each InvoiceId.
so I cna have Invoice#97865 with LineItemNumbers 1,2,3.
right now I am...
September 23, 2015 at 3:11 pm
That is what I will do then. I need to study up on Merge and how this will work best for me. This was my first time trying this transformation...
February 6, 2015 at 9:19 am
Thanks I will try this today and get back to you. I will then mark this as solution.
This did work SO I marked it.
September 25, 2014 at 9:49 am
I do something similar but I insert the row counts into a Table first then I run this code in an Execute SQL Task. FYI I am using SSIS 2012...
September 18, 2014 at 4:05 pm
Yes I did understand once I saw it work Thanks again I marked this as Solved.
As far as performance this will be part of an SSIS ETL job once a...
August 20, 2014 at 3:59 pm
Thanks again. this is what I changed it too and it seems to work.
with NumberedResults as
(
select ROW_NUMBER() over (Partition By actindx order by Calendar_Month) as RowNum
, *
from TrialBalance...
August 20, 2014 at 3:38 pm
I know this is a rookie question, but how do I find out which column makes my Row number? I assume there is an internal SP or something that can...
August 20, 2014 at 3:08 pm
Fixed my CODE and attaching Excel sheet to show desired output. see column N, O, P for results.
August 1, 2014 at 3:38 pm
Thanks I will mark this as solution completed.
July 24, 2014 at 8:53 am
As I said this worked. My next question is how do Insert this New_TB into Trial_Balance_Debit?
Again Following my logic in the Excel sheet this would insert into K3 and then...
July 23, 2014 at 4:45 pm
I'm sorry Your right I ran it on my full real DB and it didn't look right, but when I used fake data it works. THANKS!
July 23, 2014 at 4:35 pm
No Not quite. the best way to explain is as if it is an Excel sheet say ActivityDebit is Column H and it's Value in H3 is 742031.30 (which is...
July 23, 2014 at 4:19 pm
Version of SQL is SQL Server2008r2.
for Second Question I need both a running total and individual totals. 1st one is for posting type of Balance Sheet next one is for...
July 2, 2014 at 12:24 pm
Thanks for this, but i was unable to make it work with my query and DB. I finally asked my boss and he gave me this which worked. I am...
March 4, 2014 at 11:47 am
Thanks. There was something wrong with the SQL task so I deleted it and created another and it works.
When I say it works i mean I am able to execute...
February 4, 2014 at 3:34 pm
Viewing 15 posts - 1 through 15 (of 22 total)