How to add progress counter in SSIS
问题 I am running a package which is extracting data from a single flat file and load it into the SQL Server destination. Flat file has more than 10,000 rows (it changes daily) Is there any way I can find how much percent the task is completed? Like when developer/Support team execute a select statement on a table at an instance like Select percentComplete from PackagePerformance Where packageId = 12 they get output like: 60% which means 60% of data is loaded into SQL table at this instance. Any