About 11,900,000 results
Open links in new tab
  1. What is InnoDB and MyISAM in MySQL? - Stack Overflow

    Sep 29, 2010 · InnoDB and MYISAM, are storage engines for MySQL. These two differ on their locking implementation: InnoDB locks the particular row in the table, and MyISAM locks the …

  2. What's the difference between MyISAM and InnoDB? [duplicate]

    Sep 27, 2012 · The main differences between InnoDB and MyISAM ("with respect to designing a table or database" you asked about) are support for "referential integrity" and "transactions".

  3. mysql - When to use MyISAM and InnoDB? - Stack Overflow

    Mar 28, 2013 · InnoDB uses row level locking, has commit, rollback, and crash-recovery capabilities to protect user data. It supports transaction and fault tolerance above differences …

  4. When should you choose to use InnoDB in MySQL?

    Apr 8, 2014 · 4 InnoDB: The InnoDB storage engine in MySQL. InnoDB is a high-reliability and high-performance storage engine for MySQL. Key advantages of InnoDB include: Its design …

  5. mysql - How do I repair an InnoDB table? - Stack Overflow

    Sep 27, 2015 · After you have successfully fixed the crashed innodb table, don't forget to remove #set-variable=innodb_force_recovery=6 from my.cnf and then restart MySQL server again.

  6. mysql - MyISAM versus InnoDB - Stack Overflow

    Aug 21, 2008 · This is why InnoDB has been the default engine since MySQL 5.5... but, for whatever reason, MyISAM continues to be the default engine for tables created within …

  7. Howto: Clean a mysql InnoDB storage engine? - Stack Overflow

    Feb 17, 2018 · Is it possible to clean a mysql innodb storage engine so it is not storing data from deleted tables? Or do I have to rebuild a fresh database every time?

  8. Trouble with MySQL - InnoDB: Operating system error number 2 …

    InnoDB: 1) If there is a permission problem in the file and mysqld cannot InnoDB: open the file, you should modify the permissions. InnoDB: 2) If the table is not needed, or you can restore it …

  9. How to convert all tables from MyISAM into InnoDB?

    Oct 4, 2010 · I know I can issue an alter table individually to change the table storage from MyISAM to InnoDB. I am wondering if there is a way to quickly change all of them to InnoDB?

  10. InnoDB: Attempted to open a previously opened tablespace

    Nov 20, 2015 · InnoDB: 1) If there is a permission problem in the file and mysqld cannot InnoDB: open the file, you should modify the permissions. InnoDB: 2) If the table is not needed, or you …