Senior ETL Tester
Senior ETL Tester Interview Questions and Answers

Asked in Wipro

Q. What is the result of an INNER JOIN and a LEFT JOIN for the following table values? Table1 Table2 A B C A B C 1 2 3 1 3 2 4 5 6 4 5 7 7 8 9 7 5
Inner join returns only the matching rows between two tables, while left join returns all rows from the left table and the matching rows from the right table.
Inner join result: 1 2 3
Left join result: 1 2 3, 4 5 6, 7 8 9

Asked in Wipro

Q. How can you change a data type without using the alter condition?
You can use a temporary table to change datatype without altering the original table.
Create a new temporary table with the desired datatype
Insert data from the original table into the temporary table
Drop the original table
Rename the temporary table to the original table name

Asked in Wipro

Q. What tools have you used for ETL testing?
Some tools used for ETL testing include Informatica PowerCenter, Talend, IBM InfoSphere DataStage, and Apache Nifi.
Informatica PowerCenter
Talend
IBM InfoSphere DataStage
Apache Nifi

Asked in kipi.ai

Q. How do you delete duplicates from a table?
To delete duplicates from a table, use a combination of SELECT DISTINCT and INSERT INTO new table.
Create a new table with the same structure as the original table.
Use SELECT DISTINCT to select unique rows from the original table.
Insert the unique rows into the new table.
Drop the original table.
Rename the new table to the original table name.

Asked in Accenture

Q. What is the difference between UNION and UNION ALL?
Union combines and removes duplicates, Union All combines all rows including duplicates.
Union removes duplicates while Union All includes duplicates
Union is slower than Union All as it involves removing duplicates
Union requires sorting while Union All does not
Senior ETL Tester Jobs

Interview Questions of Similar Designations
Interview Experiences of Popular Companies







Reviews
Interviews
Salaries
Users

