Viewing 15 posts - 886 through 900 (of 1,228 total)
Hi, I am not clear on your context here. CDC runs on a database where the data is being monitored for changes. How does this relate to your "destination "?
October 16, 2014 at 6:07 pm
Change Data Capture (CDC) is a SQL job that crawls the sql server transaction log looking for changes. When a change is read it writes an entry to its...
October 16, 2014 at 4:51 pm
I can add that SSIS is extendable. Thus it is possible to create in .NET your very own data source component for the data flow task to adapt to...
October 16, 2014 at 2:45 pm
Just to note, you dont really need the GROUP BY clause in this example. The "SELECT MAX(WeekDay)" part is not really an aggregation on the previous columns listed. But it...
October 16, 2014 at 2:31 pm
It would be nice to post create tables statements with sample data to see how your data is structured. What I am seeing / reading described is a final front...
October 16, 2014 at 11:45 am
That is interesting and thanks for sharing. This is equivalent to the UNION ALL operator but not the UNION operator. I suppose that you can take the query, wrap it...
October 16, 2014 at 11:02 am
Data conversions are a norm in the ETL world. Overall SSIS handles them great. The OP did the right thing by doing the conversion in the data source adapter with...
October 10, 2014 at 2:15 pm
Hi, by using the Lookup transform, you will be only inserting rows that had no match.
So to do this in the Lookup transformation editor> general ...
Specify how to handle...
October 10, 2014 at 12:59 pm
What language setting are you using? For example:
SELECT CAST('25/08/14' as datetime)
SELECT CAST('08/25/14' as datetime)
Can give you different results based on your language setting for the server.
October 9, 2014 at 5:08 pm
SSIS can be rather quirky. Did you initially not do the conversion in the select query within the data source? And then changed it after realising you need to? That...
October 9, 2014 at 4:49 pm
The way I read it your error is within SSIS. So let us see if you can use Excel as a dataflow destination. Right click your project > properties >...
October 9, 2014 at 4:27 pm
I am wondering if you could not eliminate the nested looping by only using the one loop to iterate through the dates and then somehow build an expression pertaining to...
October 9, 2014 at 4:06 pm
ChrisM makes a good point as a numeric column will not give the expected results...
Either the column is a char/varchar or will have to be cast at select time because...
October 8, 2014 at 3:16 pm
Just to note,
I was recently having a similar issue. The test database I was working on gets restored from back up periodically from another machine. So that breaks the...
September 24, 2014 at 4:58 pm
Hi, it does not appear the SCD component will do the job here. So this relates back to an earlier post on doing the updates, inserts programatically with execute t-sql...
September 23, 2014 at 2:46 pm
Viewing 15 posts - 886 through 900 (of 1,228 total)