Is there any option to create a custom Profile Request for SSIS Data Profiling Task?
At the moment there are 5 standard profile requests under SSIS Data Profiling task:
- Column Null Ratio Profile Request
- Column Statistics Profile Request
- Column Length Distribution Profile Request
- Column Value Distribution Profile Request
- Candidate Key Profile Request
I need to add another one (Custom one) to get summary of all numeric values.
Thanks in advance for your helps.
Based on this Microsoft Documentation, SSIS Data profiling Task has only 5 main profiles (listed on your question) and there is no option to add a custom profile.
For a similar reason, i will create an
Execute SQL Task
to achieve that, you can use the aggregate functions you need andISNUMERIC
function in the where clause :