Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have three tables

  • glSalesJournal
  • HMISAdd
  • HMISMain

Now what i am trying to do is add the glSalesJournal amt with HMISAdd amt while grouping up with various Fields and inserting the result into glSalesJournal

The glSalesJournal contains 633173 records

The HMISAdd contains 4193 records

HMISAdd and glSalesJournal contains the same columns which are

  • loc
  • glAcct
  • glSubAcct
  • batchNbr
  • contractNbr
  • amt

I added indexes to the table still the results are the same.

Here is my code:

INSERT INTO hmismain
            (loc,
             glacct,
             subacct,
             batchnbr,
             contractnbr,
             amt)
SELECT glsalesjournal.loc,
       glsalesjournal.glacct,
       glsalesjournal.glsubacct,
       ( glsalesjournal.amt + hmisadd.amt ) AS sumAmt,
       glsalesjournal.batchnbr,
       glsalesjournal.salescontnbr
FROM   glsalesjournal
       LEFT OUTER JOIN hmisadd
                    ON ( glsalesjournal.loc = hmisadd.loc
                         AND glsalesjournal.glacct = hmisadd.glacct
                         AND glsalesjournal.glsubacct = hmisadd.subacct
                         AND glsalesjournal.batchnbr = hmisadd.batchnbr
                         AND glsalesjournal.salescontnbr = hmisadd.contractnbr )
GROUP  BY glsalesjournal.loc,
          hmisadd.loc,
          glsalesjournal.glacct,
          hmisadd.glacct,
          glsalesjournal.glsubacct,
          hmisadd.subacct,
          glsalesjournal.batchnbr,
          hmisadd.batchnbr,
          glsalesjournal.salescontnbr,
          hmisadd.contractnbr

The time taken by the script to execute is more than 2 hours. Even when I limit the Records to 100 the time taken is the same.

Can someone please guide me how can I optimize the script.

Thanks

share|improve this question
3  
Do you mean sum( glSalesJournal.amt + HMISAdd.amt) as sumAmt, – StuartLC Aug 21 '12 at 8:57
@nonnb, if I'm not wrong I think he means ( glSalesJournal.amt + HMISAdd.amt) as sumAmt – Adnan Aug 21 '12 at 9:03
yes ( glsalesjournal.amt + hmisadd.amt ) AS sumAmt is what i want... the sum of two fields... either way the output comes fine. – ankit suhail Aug 21 '12 at 9:24
@ankit: What are the Primary keys of the 2 tables? Are the combinations you are joining on, Primary or Unique? – ypercube Aug 21 '12 at 9:33
@ypercube there is a composite primary key made out of the fields which are grouped... I mean my primary key is composed of loc glAcct, glSubAcct, batchNbr, contractNbr, amt – ankit suhail Aug 21 '12 at 10:27
show 2 more comments

2 Answers

up vote 2 down vote accepted

1) It looks like it's a one off query, am I correct here? If not than you are inserting the same data into hmismain table every time.
2) You are grouping on fields from TWO separate tables, so no amount of indexing will ever help you. The ONLY index that will help is an index over a view linking these two tables in the same way.

Further note:
What is the point of

      GROUP  BY glsalesjournal.loc,
      hmisadd.loc,
      glsalesjournal.glacct,
      hmisadd.glacct,
      glsalesjournal.glsubacct,
      hmisadd.subacct,
      glsalesjournal.batchnbr,
      hmisadd.batchnbr,
      glsalesjournal.salescontnbr,
      hmisadd.contractnbr

You are grouping the data by the same fields twice
glsalesjournal.loc, hmisadd.loc
glsalesjournal.glacct, hmisadd.glacct,
...

Remove the duplicates from GROUP BY and it should run fast

share|improve this answer
Aelington ok I removed the duplicate grouping still the query is slow. When i change left outer join to inner the script took almost 1 min. – ankit suhail Aug 21 '12 at 10:38
@ankitsuhail Is that good or bad? What did you expect? With OUTER JOIN you have 633173 records to process, with INNER JOIN just 4193 records. Post the actual SQL that you are running and table indexes definitions. There si something VERY wrong with your query or your set-up. BTW: what is the number of records being inserted into hmismain? And are you absolutely sure that you need to run this query without any selection criteria every time? If hmismain has any constrains (like unique keys) it maybe failing most of the time and it takes considerably more time than checking. – Germann Arlington Aug 21 '12 at 17:46
nice answer and thanks for telling me that i was building the query with a wrong approch but i did something different to get what I wanted. i will post the solution soon. – ankit suhail Sep 16 '12 at 13:53

Did you add an index on this fields:

glSalesJournal.loc
glSalesJournal.glAcct
glSalesJournal.glSubAcct
glSalesJournal.batchNbr
glSalesJournal.salesContNbr
HMISAdd.Loc
HMISAdd.GlAcct
HMISAdd.SubAcct
HMISAdd.batchNbr 
HMISAdd.contractNbr

If this fields are unindexed, it will perform fulltable scan for each individual record thus causing slow performance.

MySQL Create Index Syntax

share|improve this answer
The point is that OP can not add index(es) on these fields simply because they are from different tables. Unless OP will create a view they can't. Further more the fields are duplicated in pairs as they are JOIN fields -> they will contain the same data -> one can be omitted from each pair. – Germann Arlington Aug 21 '12 at 17:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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