Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Am very new to Talend and am loading a salesforce object from a database table.
pretty simple job and it fails to load about 5% of the data. I am just trying to capture the reject records to a xls or csv. such an easy thing i imagine but cant seem to find where/how.
any help would be appreciated.
thanks!
Welcome!
Sorry but not clean
Could You attach screenshots of Your Job, errors what You have and etc.
It make more easy to understand - where the problem
Hello,
You haven't mentioned which Database you are using I am assuming it must be SQLSql Server so in order to capture rejected records you will have to first untick "Use Batch Size" option which is in Adv settings of the tMsSqlOutput component.
And since you said your source is Salesforce and you are getting rejected records then even if you are able to capture the rejected records you won't be directly able to load it into your target table(if in case that's what you are trying to achieve). Instead, you can add SET ANSI warning OFF command in tMsSqlRow this way those rows won't be included in your target and you won't get any truncation issue if those rows are not important for your project. Because mostly truncation issue comes for "Description" field of Salesforce objects. Later on, you can ON the ANSI warning at the endDesign1 to handle rejects rows
Design 2 to avoid truncation issues
settings1 for Design1
settings 2 for Design1
to ignore truncated rows
more clarification. my source is sql server, destination is salesforce.
Thanks!
I am doing exactly the same thing.. But although it is rejecting the records but in output it is still showing 0 records. Why so? can you please help?
Yes absolutely!
The situation is that I have 10 records, out of which 7 are OK and 3 i am expecting to go as rejected records and they should be stored in a separate excel as I am trying. On the console it shows me those 3 error records like 'Invalid date' etc. but why these erroneous records do not go in the excel?