design - SSIS data validation and Cleaning -
i need this
client puts data in ftp folder (data can in these 3 format- .txt, .csv or .xls), ssis package need pull data ftp , check data file correct format such last name not empty, phone 10 digit, zip code 5 digits, address not more 20 character length etc etc) after checking data file, if okay should load file in dev. database, if not need run cleaning quires (like taking first 5 digit zip etc) , load data, if column missing, need send email client asking different data file
till now, task manually importing file , running lot of sql queries, time consuming. manager asked me write ssis package automate process
i new in ssis, can give me ssis package design idea (i mean task use @ sequence etc) can try , learn
here couple of suggestions:
configure tasks send errors caused bad data separate file. identify problem rows while letting stuff continue. can use conditional split redirect rows bad data such blank rows.
the derived column transformation handy trim, format, slice, , dice data.
use event handler send emails if given condition true.
use logging features. helpful in sorting out went sideways while sleeping.
Comments
Post a Comment