Viewing 12 posts - 1 through 12 (of 12 total)
Only row 2 is ignored, because it is the only one which matches your exclusion rule.
You have said that rows 2 and 3 will be ignored (why row 3, its...
October 23, 2013 at 8:39 pm
Nevyn (10/23/2013)
Maybe some more veteran SSIS users have a...
October 23, 2013 at 3:27 pm
2008
December 21, 2012 at 7:04 am
I don't believe the above approach will work because there could be multiple Acquired/Lost combinations for a single Auid (sorry, should have explained that in my original post). For...
December 20, 2012 at 9:22 am
Although I didn't specify, the re-acquire method is exactly what I was looking for. Thanks much for posting!
December 19, 2012 at 9:52 am
I was able to achieve what I wanted by doing the following:
1) Added List control to report body. By default, a Tablix report item is created within the List...
December 28, 2011 at 1:06 pm
Jeff Moden (12/21/2011)
MattieMich7 (12/21/2011)
create table #Table1 (ProjectID int, [Attribute Name] nvarchar(50), DateTimeValue datetime)
insert into #Table1
select 1,'Start Date','8/8/2008'
union all
select 1,'End Date','4/30/2011'
union all
select 2,'Start Date','10/1/2011'
union...
December 21, 2011 at 8:52 pm
I figured it out. Here's the code:
create table #Table1 (ProjectID int, [Attribute Name] nvarchar(50), DateTimeValue datetime)
insert into #Table1
select 1,'Start Date','8/8/2008'
union all
select 1,'End Date','4/30/2011'
union all
select 2,'Start Date','10/1/2011'
union all
select 2,'End Date','9/30/2014'
;with...
December 21, 2011 at 3:49 pm
Thank you both for your reply. I'm sorting through the examples now (kind of information overload, but I'm definitely learning a lot) to see how I can apply it...
December 13, 2011 at 10:09 am
Since my goal was to never remove the duplicates, I realized that the Multicast transformation was the best fit for my needs.
I have one Multicast output that sends...
November 19, 2009 at 12:43 pm
Thank you for your reply.
However, I'm not looking to "remove" duplicates through a conditional split. I just want to identify them and export them to some kind...
November 19, 2009 at 11:21 am
I continue to be unsuccessful in my search for a solution...any takers out there?
Thanks again!
November 2, 2009 at 10:36 am
Viewing 12 posts - 1 through 12 (of 12 total)