• quillis131 (1/23/2013)


    samvanga (1/22/2013)


    You may want to look at BIML (Business Intelligence Markup Language). It comes with BIDS Helper.

    It's metadata driven and allows you to automate SSIS package generation.

    I've implemented this scenario, but moving tables from SQL Server source to staging tables in SQL Server (not Oracle). Source and staging tables should have the same table and column names. Then, columns will be automatically mapped for each table.

    This script is an example to get started. It creates SSIS package to export each table in the database to a flatfile. You'll see it is dynamic and you don't have to manually create them.

    I've a framework I about to publish that might also give you ideas. I'll let you know when it's published.

    I have difficult in understanding this BIML concept….. I end up editing BIML for every package that I want to create (Source, source Query, Destination, data types). I could have done it in the same way by copying an SSIS package and editing it or standard template can be used to generate a SSIS package with CM and Task and DFs and edit source and Destinations, isn’t this same as BIML?

    I am trying to understand what more flexibility BIML adds up when compared to customized SSIS Template.

    Good question. BIML attempts to be a simple text-based representation of a package, which can be 'built' (can't remember the correct term) into a package.

    It's possible to create a routine - eg a stored proc - which will accept parameters & return an XML string in BIML format which can be built straight into a package.

    So you can create packages which do not require any BIDS development. And recreate them at will.

    This is particularly useful when you want to use the same simple package structure for numerous sources and destinations (eg, a data warehouse load).

    If you haven't even tried to resolve your issue, please don't expect the hard-working volunteers here to waste their time providing links to answers which you could easily have found yourself.