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

  • SEARCH
  • Home
  • 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 6690565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T05:39:06+00:00 2026-05-26T05:39:06+00:00

Possible Duplicate: What is InnoDB and MyISAM in MySQL? in my project database some

  • 0

Possible Duplicate:
What is InnoDB and MyISAM in MySQL?

in my project database some of table has engine type innoDB and some others Myisam.
why it was set like this ?

  • 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-26T05:39:06+00:00Added an answer on May 26, 2026 at 5:39 am

    The 2 major types of table storage engines for MySQL databases are InnoDB and MyISAM. To summarize the differences of features and performance,

    1. InnoDB is newer while MyISAM is older.
    2. InnoDB is more complex while MyISAM is simpler.
    3. InnoDB is more strict in data integrity while MyISAM is loose.
    4. InnoDB implements row-level lock for inserting and updating while MyISAM implements table-level lock.
    5. InnoDB has transactions while MyISAM does not.
    6. InnoDB has foreign keys and relationship contraints while MyISAM does not.
    7. InnoDB has better crash recovery while MyISAM is poor at recovering data integrity at system crashes.
    8. MyISAM has full-text search index while InnoDB has not.

    In light of these differences, InnoDB and MyISAM have their unique advantages and disadvantages against each other. They each are more suitable in some scenarios than the other.

    Advantages of InnoDB

    1. InnoDB should be used where data integrity comes a priority because it inherently takes care of them by the help of relationship constraints and transactions.
    2. Faster in write-intensive (inserts, updates) tables because it utilizes row-level locking and only hold up changes to the same row that’s being inserted or updated.

    Disadvantages of InnoDB

    1. Because InnoDB has to take care of the different relationships between tables, database administrator and scheme creators have to take more time in designing the data models which are more complex than those of MyISAM.
    2. Consumes more system resources such as RAM. As a matter of fact, it is recommended by many that InnoDB engine be turned off if there’s no substantial need for it after installation of MySQL.
    3. No full-text indexing.

    Advantages of MyISAM

    1. Simpler to design and create, thus better for beginners. No worries about the foreign relationships between tables.
    2. Faster than InnoDB on the whole as a result of the simpler structure thus much less costs of server resources.
    3. Full-text indexing.
    4. Especially good for read-intensive (select) tables.

    Disadvantages of MyISAM

    1. No data integrity (e.g. relationship constraints) check, which then comes a responsibility and overhead of the database administrators and application developers.
    2. Doesn’t support transactions which is essential in critical data applications such as that of banking.
    3. Slower than InnoDB for tables that are frequently being inserted to or updated, because the entire table is locked for any insert or update.

    The comparison is pretty straightforward. InnoDB is more suitable for data critical situations that require frequent inserts and updates. MyISAM, on the other hand, performs better with applications that don’t quite depend on the data integrity and mostly just select and display the data.

    Reference:
    Comparison InnoDB and MyISAM

    You can also check it out here for further details:
    MyISAM Or InnoDB MySQL engine?

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Should I always prefer MySQL InnoDB over MyISAM? Under what conditions should
Possible Duplicate: Why do I see a double variable initialized to some value like
Possible Duplicate: MySql: MyISAM vs. Inno DB! I am implementing a blog in php
Possible Duplicate: MyISAM versus InnoDB what is the difference between innodb and myisam ?
Possible Duplicate: C# driver development? I would like to know if I can do
Possible Duplicate: Progressbar togther with asyncTask I am having a expandableListView in a project
Possible Duplicate: How to store an IP in mySQL I want to get the
Possible Duplicate: Yield In VB.NET In C#, when writing a function that returns an
Possible Duplicate: Best way to stop SQL Injection in PHP I am creating a
Possible Duplicate: Finding the Variable Name passed to a Function in C# In C#,

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.