selva has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's minimum standard of quality and will not be displayed.
  • Comment on Performance : process lakhs of database records

Replies are listed 'Best First'.
Re: Performance : process lakhs of database records
by marto (Cardinal) on Jun 03, 2010 at 07:32 UTC

      "Lakh" is a unit much used in India and thereabouts, and is equal to 100,000.

      Paul

        Yeah, I linked to the wiki entry in my post under the suspicion that was what OP meant.

        Also known as 100 grand pianos, right? :)
Re: Performance : process lakhs of database records
by JavaFan (Canon) on Jun 03, 2010 at 09:40 UTC
    I fail to pinpoint a particular problem in your question. Is it the "how do I connect to the database" issue you have a problem with? Is it "how do I process records"? Is it "how do I write a Perl program"? Is it "please write a program for me?". Please elaborate. And tell us what you've done so far.

      Currently i take nearly hundred thousands of record and load it in hash.
      After that compare the record values to another table.
      It leads to performance issue. Is there any efficient way to improve this.

        Why not simply do a database query via DBI and compare the values between the two tables?