To increase the performance in SSIS for SCD

  • How we can increase the performance while transforming the large amount of data in SSIS using SCD. Thanks

  • Hello,

    Using SCD Transformation in SSIS is a performance bottleneck ,else i would suggest you to go with using Lookup, OLEDB, Union All transformation and conditional split transformations to get the required performance.

    Lookup's is the only place where you are better tune the performance of the Lookup cache, you can leverage the Full Cache or Partial Cache in SSIS.

    let me know if you require any assistance.

    Thanks

    Chandu

  • There is no law to do ETL in the Dataflow ;-). In my opinion there are cases where the database is stronger.

    So you could save intermediate results in staging/transformation tables and then do the SCD-Work with a stored procedure. There you shouldn't process record by record but do SET-Based work. For example for a SCD2 Dimension you would need one update-Statement and one insert-Statement.

    To

  • abhijitka (6/9/2009)


    How we can increase the performance while transforming the large amount of data in SSIS using SCD. Thanks

    Have you checked Todd McDermid's SCD component?

    ---
    SSIS Tasks Components Scripts Services | http://www.cozyroc.com/

  • Here are some more alternatives to improve the performance of a Slowly Changing Dimension:

    http://microsoft-ssis.blogspot.com/2011/01/slowly-changing-dimension-alternatives.html

Viewing 5 posts - 1 through 4 (of 4 total)

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