Hi,
I am trying to process Excel files in Data Services, however I'd like to put some data quality checks in place (i.e. making sure fields that are supposed to be all numbers don't have letters). I've been using the is_valid_int functions in WHERE fields in the queries inside my DataFlows to achieve these data validation checks. It has been working, however, I don't simply want to skip these records, and load only correct ones, I'd prefer if the file stopped getting processed and the whole Job stopped. Is there some way inside of a DataFlow to throw an error if the is_valid_int(Field,'####') = 0?