This website uses Cookies. Click Accept to agree to our website's cookie use as described in our Privacy Policy. Click Preferences to customize your cookie settings.
@Colossal8333 With the Data Validator Snap (and the constraint that you've put), if no rows are returned, the snap (Data validator) will throw an error and the pipeline will fail. - or maybe that's the behavior that you want to achieve. Another o...
@manohar Please find the attached 2 pipelines. Parent pipeline will extract the source data, will pass to the child, and the child pipeline will write the file with the Id in the filename. BR,Spiro
@arvindnsn Check the Header size error policy configuration within the CSV Parser Snap:With Trim record to fit header you should be able to parse the CSV data.
@maahutch In the FIlter Snap, you can put a ternary condition, checking if the _dataset_name parameter is empty or not. If it is empty, process all records, if not, select only that record: _dataset_name != "" ? db_field == _dataset_name : trueI supo...