Q4 Informatica

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

CREATE TABLE S_EPLIST ( DEPARTMENT_NO NUMBER, EMPLOYEE_NAME VARCHAR2(32));

INSERT INTO S_EPLIST VALUES (10,�A�);


INSERT INTO S_EPLIST VALUES (10,�B�);
INSERT INTO S_EPLIST VALUES (10,�C�);
INSERT INTO S_EPLIST VALUES (10,�D�);
INSERT INTO S_EPLIST VALUES (20,�P�);
INSERT INTO S_EPLIST VALUES (20,�Q�);
INSERT INTO S_EPLIST VALUES (20,�R�);
INSERT INTO S_EPLIST VALUES (20,�S�);

C. Design a mapping to load a target table with the following values from the
above source (pivoting of records)?

department_no employee_list
10 A,B,C,D
20 P,Q,R,S

You might also like