Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
"very slow" is not very helpful. (1) how fast do you think it should be? (2) post the execution plan. – Jeffrey Kemp Dec 20 '12 at 5:18
On an unrelated not, why does your INSERT statement not insert the emp_id column? – Jeffrey Kemp Dec 20 '12 at 5:18

closed as too localized by Mitch Wheat, Jonathan Leffler, Conrad Frix, VMAtm, indiv Dec 21 '12 at 6:41

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

FROM a a, a b where a.emp_id < b.emp_id

that's a big set (over 3 million rows) if you have 10000 rows in the table A. this would be slow as you're not joining to B properly.

You should add the join and B.emp_desc = E.emp_desc to the on clause. this should reduce the time taken considerably.

and as Jeffrey says, you're not populating EMP_ID in the B table yet joining on it.

share|improve this answer

There are three elements to the performance of this query

  1. The query in the USING clause. How is the performance there? How many rows does it produce? How many rows does Oracle think it will produce?
  2. The outer join between that query and the table B. What join mechanism is used? Does Oracle get the estimate of the rows in B correct? Is the join mechanism appropriate
  3. The insert. Are there any triggers on the table? Materialised view logs and on-refresh commits?

The answers to most of these questions are in the explain plan, which you should post with any performance request.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.