I have the following table and part of my data.I face performance problem when i execute this code on 10000 rows. It's very slow.Is there any way to improve the performance of Merge command.
Drop table a ;
Create table a (id number(9), emp_id number(9), carton varchar2(20), no_carton number(9));
Insert into a values(1,1,’A’,10);
Insert into a values(2,1,’B’,20);
Insert into a values(3,1,’D’,25);
Insert into a values(4,1,’E’,15);
Insert into a values(5,1,’F’,10);
Insert into a values(6,2,’B’,10);
Insert into a values(7,2,’A’,50);
Insert into a values(8,2,’D’,30);
Insert into a values(9,2,’E’,40);
Insert into a values(10,3,’F’,20);
Insert into a values(11,3,’G’,30);
Insert into a values(11,4,’B’,10);
Insert into a values(12,4,’C’,30);
Insert into a values(13,4,’E’,20);
Insert into a values(14,5,’A’,50);
Insert into a values(15,5,’E’,10);
Insert into a values(16,5,’B’,20);
Insert into a values(17,5,’F’,20);
Insert into a values(18,5,’D’,40);
Insert into a values(19,6,’A’,30);
Insert into a values(20,6,’B’,20);
The merge Command
MERGE INTO b B
USING (SELECT a.emp_id || ' with ' || b.emp_id emp_desc,a.emp_id as emp_id
, SUM (CASE WHEN a.carton = b.carton
THEN a.no_carton * b.no_carton
ELSE 0
END) total
FROM a a, a b where a.emp_id < b.emp_id
GROUP BY a.emp_id, b.emp_id
) E
ON (B.emp_id = E.emp_id)
WHEN NOT MATCHED THEN
INSERT (B.emp_desc,b.total)
VALUES (E.emp_desc ,E.total);
if you ask me , What is the merge command doing? it is multiple value of carton A of emp_id 1 with 2 + multiple value of B of emp_id 1 and 2 and so on More details : Multiple value of A for Empid 1 and 2 then add it to multiple value of multiple value of b for empid 1 and 2 then add it to multiple value of c of empid 1 and 2
after finished all carton for 1 and 2 then go to 1 and 3 after finished go to 1 and 4 then 2 and 3 then 2 and 4 and so on.
Many thanks in advance.
emp_idcolumn? – Jeffrey Kemp Dec 20 '12 at 5:18