Senior ETL Tester
Senior ETL Tester Interview Questions and Answers
Q1. What is the result of Inner join and left join for below 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
Q2. How to change datatype without using 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
Q3. What Tools 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
Q4. How to 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.
Q5. Difference b/w 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
0Interview Questions of Similar Designations
Calculate your in-hand salary
Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Reviews
Interviews
Salaries
Users/Month