How do you update tables with SSIS?!

  • For truncating use an Execute SQL task in the main flow.

    For updating (especially UpSert) use the Slowly changing Dimension component. It's a wizard that will handle your update/inserts easily.

    For selective updating or significant logic, I recommend dumping to a staging table and then running procs to load from staging to primary tables.


    - Craig Farrell

    Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.

    For better assistance in answering your questions[/url] | Forum Netiquette
    For index/tuning help, follow these directions.[/url] |Tally Tables[/url]

    Twitter: @AnyWayDBA

  • Craig Farrell (1/18/2011)


    For truncating use an Execute SQL task in the main flow.

    For updating (especially UpSert) use the Slowly changing Dimension component. It's a wizard that will handle your update/inserts easily.

    For selective updating or significant logic, I recommend dumping to a staging table and then running procs to load from staging to primary tables.

    I'd like to add that the list option of Craig will always outperform the Slowly Changing Dimension component.

    To update rows, you can use the TSQL UPDATE statement in an Execute SQL Task.

    Good luck on your preparation for the BI exam!

    Need an answer? No, you need a question
    My blog at https://sqlkover.com.
    MCSE Business Intelligence - Microsoft Data Platform MVP

Viewing 2 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply