Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 437989
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T20:38:00+00:00 2026-05-12T20:38:00+00:00

I am running MySQL server on the server’s which has following specifications – Dual

  • 0

I am running MySQL server on the server’s which has following specifications –

Dual Xeon Quad Core 2.0, 2048 MB RAM, 1x 160 GB SATA
Fedora Core + SSH

But MySQL process for inserting 10000 records take more than 100% of CPU and up to 1 GB of RAM.
It’s a plain insert statement.

Why is MySQL is taking so much of memory and what can done about it?.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T20:38:01+00:00Added an answer on May 12, 2026 at 8:38 pm

    The heaviest part in your query is the SELECT:

    Select FirstName, LastName, CountryID, Address, Phone
    From Test2.Customer
    Where UserID Between 1 and 5000
    and CustomerID in (Select CustId from Cust_Details Where CustName like 'Mi%')
    

    The nested query probably is repeated for each row. You can check this running EXPLAIN PLAN + all the SELECT query. I guess the ‘like’ operator is used against a non-indexed column. In this case (like 'xyz%') a simple index can improve performance a lot.

    [Added: moreover, SELECT CustId … must output id’s that are greater than 5000, that aren’t needed at all. A composite index (CustId, CustName) on Cust_Details must also be useful.]

    Try usign a join instead:

    Select FirstName, LastName, CountryID, Address, Phone
    From Test2.Customer c, Cust_Details cd
    Where c.UserID Between 1 and 5000
    and c.CustomerID=cd.CustId
    and left(cd.CustName) = 'Mi'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a myisam only dedicated 32 GB RAM mysql server that is running
The following sql query works fine on my development server running mysql 5, but
We have a Linux server that has been running our MySQL 5.1 server. For
I'm running SQL query for MySQL server with ... where name in (term1,term2,term3) I
I'm testing MySQL as a replacement for SQL server and I'm running into something
I am running mysql server on my computer.I would like to copy the databases
We are running MySQL on a Windows 2003 Server Enterpise Edition box. MySQL is
I'm running MySQL 5.1.48 on Windows XP and the following trigger test doesn't work:
i am using php and running sql queries on a mysql server. in order
Can I connect to a Ubuntu server, that is running MySQL using ADO.NET or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.