Forum Replies Created

Viewing 15 posts - 901 through 915 (of 1,243 total)

  • RE: CDC activities on receiving machine?

    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 "?

    ----------------------------------------------------

  • RE: CDC polling mechanism

    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...

    ----------------------------------------------------

  • RE: Lookin for Reference for EDI Using SSIS and X12 Format Files

    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...

    ----------------------------------------------------

  • RE: Can I use WHILE in a CTE?

    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...

    ----------------------------------------------------

  • RE: Something like a more detailed mail merge...how to do it?

    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...

    ----------------------------------------------------

  • RE: Tempdb grows from nothing to 10G in just a few seconds

    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...

    ----------------------------------------------------

  • RE: output date to mm/dd/yyyy

    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...

    ----------------------------------------------------

  • RE: Please suggest

    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...

    ----------------------------------------------------

  • RE: Cannot read the next data row for the dataset

    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.

    ----------------------------------------------------

  • RE: output date to mm/dd/yyyy

    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...

    ----------------------------------------------------

  • RE: Display an Excel Sheet using SSIS

    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 >...

    ----------------------------------------------------

  • RE: Control Flow: selectively consuming multiple source files

    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...

    ----------------------------------------------------

  • RE: Inserting a dash between some values AND Adding a leading zero if only 5 characters

    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...

    ----------------------------------------------------

  • RE: SSRS Report on Local Server works fine but not through Remote server

    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...

    ----------------------------------------------------

  • RE: Slowly Changing dimension inside a ForEach Loop container

    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...

    ----------------------------------------------------

Viewing 15 posts - 901 through 915 (of 1,243 total)