Anda di halaman 1dari 2

1.

Convert single row from source to three rows in target :


Source: Target:
Col1,Col2,Col3 col
a.b,c a
b
c
2. Split the non-key columns to separate tables with key column in both:

Source Target1 Target2
ID Name Phone No
10 AAA 123
20 BBB 234
30 CCC 434
40 DDD 343
50 EEE 442

ID Name
10 AAA
20 BBB
30 CCC
40 DDD
50 EEE

ID Phone No
10 123
20 234
30 434
40 343
50 442

3. Separating duplicate and non-duplicate rows to separate tables :
How to segregate the duplicate and distinct rows from source table to separate target tables?

Source Target1(Unique values) Target (duplicate values)
COL1 COL2 COL3
a b c
x y z
a b c
r f u
a b c
v f r
v f r

COL1 COL2 COL3
a b c
x y z
r f u
v f r

COL1 COL2 COL3
a b c
a b c
v f r


4. Retrieving first and last record from a table/file :
5. Remove footer from your file:
6. Remove header from your file:
7. Sending first half record to target:
8. Sending second half record to target :
9. Sending alternate record to target:
10. Separate the original records in target :
11. Separate rows on group basis:
12. Get top 5 records to target without using rank :
13. Segregating rows on group count basis :
14. Extracting every nth row :
15. Sending records to target tables in cyclic order :
16. Concatenation of duplicate value by comma separation:
17. Target table rows , with each row as sum of all previous rows from source table.:
18. Produce files as target with dynamic names:
19. Validating all mapping in repository:
20. Using mapping parameter and variable in mapping:
21. Removing '$' symbol from salary column:
22. Currency convertor :
23. sending data one after another to three tables in cyclic order:
24. Converting '$' symbol to 'RS." in sal column:
25. Insert and reject records using update strategy:
26. Count the no of vowel present in emp_name column:
27. Remove special characters from empno:
28. Convert Numeric Value to Date Format:
29. Check the Hire-Date is Date or Not:
30. Date Difference in Hours:
31. Sending to target with days difference more than 2 days:
32. Convert Day No. to corresponding month and date of year:
33. Targeting records of employees who joined in current month.:
34. Extracting first and last name:
35. Extracting Middle Name From Ename
36.

Anda mungkin juga menyukai