You are on page 1of 2

1.

Load all the Even records on EMPNO to one target table and odd Records to One
more target table.
2. First 3 rec should be loaded to one table and next 3 to second table and next
3 to thrid table
and the next 3 to first table and so on ...
Example :
ENO sal deptno ...
101 ..10 ---- table one
102 .... 20 ---- table one
103 .... 20 ---- table one
141 ..00 10 ---- table 2
105 ..2000 20 ---- table 2
106 ..3000 20 ---- table 2
141 ..00 10 ---- table 3
105 ..2000 20 ---- table 3
106 ..3000 20 ---- table 3
110 ..00 10 ---- table 1
111 ..2000 20 ---- table 1
112 ..3000 20 ---- table 1
Based on the asc order of the output perfrom the above logic.
I have a src as flat file with the below colums
eno,ename,sal,deptno
101,raj,1000,10
102,raha,1100,20
103,taj,1200,10
deptno,dname,loc
10,x,a
20,y,b
the above data is in one file :::: the requirement is that you should
load all the emp data into emp table and all the dept data into dept
table of the target
Design the data flow diagram for the same ......I expect at least 12
replies on this scenario.This is very easy you all should be albe to
think the logic behind this

For Filter Transformation


1)Load all Employees to the target whose experience is greater than 20 years .
2)All the employees whose name starts with s.
3)All employees whose salary is equal to 3 digits
4)All employee who doesn't have a manager.
5)All employee who doesn't have a commission.
For Stored Procedure
1)Write a stored Procedure ,take date as input and find out what is the day ,yea
r ,month,quarter,Date ,Day of the year,Day of the month,day of the Quarter for o
utput.
2)Write a stored procedure which will create Bitmap index of salary column of em
p table

3)Stored procedure should drop Bitmap indexing on salary column of emp table
Research on following
1)What is DD_insert,DD_update
2)What is Bitmap Index
3)What is commit_before and Commit_after

You might also like