To check a record which is present in the target table or not. Then which transformation is required?
-
Joiner
-
Lookup
-
Source Qualifier
-
All
B
Correct answer
Explanation
Lookup transformation is used to check if a record exists in the target table. It queries a cached version of the target table and returns matching rows based on the lookup condition. This is commonly used for incremental loading (checking for duplicates before insert) or slowly changing dimensions (determining if a row exists before update). Joiner combines two sources in the pipeline, and Source Qualifier operates at the source database level.