Could you please help me with some information to understand if my requirement is possible
I have close to 1000+ source tables to ETL using SSIS.
Most of the tables are of 1:1 mapping. So is there a way to create some script which checks the source column names and target column names and create following steps . I can pass Source Table Name and Target Table Name each time
1) Extract from source
2) Transform -- convert date columns in format YYYYMMDD to DDMMYYYY
3) Apply TRIM on CHAR columns
4) Load to Staging table
Basically i am checking if I can reduce development effort.
Thanks in Advance