Hi,
Aplogies if this has been already explained. I am not able to find the info in the forum. Hence, posting it.
I am evaluating Advanced ETL Processor Ent for my Company.
I am loading Customer Master data from Excel file into MySQL database. The source file has got the following fields.
1. EMP_NO
2. COMPANY_NO
3. NAME
4. DOB
...etc
EMP_NO should be checked against EMPLOYEE table to make sure that the Employee does not exist.
COMPANY_NO should be checked against COMPANY table to make sure that the Company exists.
I am trying to implement this check in Validator component. Is this possible? If not, how these validations can be implemented?
Also, is there any option to execute parameterised SQL query, without using Lookup? For example, I would like to execute the below query with the input fields <name> and <company_no> from Excel source, to get the EMP_NO, which will be mapped to an output field
SELECT EMP_NO FROM EMPLOYEE WHERE NAME=<name> AND COMPANY_NO=<company_no>
Thanks & Regards,
Syed.