Home
You may like this!
11.
What does myisamchk do?
- It compressed the MyISAM tables, which reduces their disk usage.
12.
Explain advantages of InnoDB over MyISAM?
- Row-level locking, transactions, foreign key constraints and crash recovery.
13.
Explain advantages of MyISAM over InnoDB?
- Much more conservative approach to disk space management – each MyISAM table is stored in a separate file, which could be compressed then with myisamchk if needed. With InnoDB the tables are stored in tablespace, and not much further optimization is possible. All data except for TEXT and BLOB can occupy 8,000 bytes at most. No full text indexing is available for InnoDB. TRhe COUNT(*)s execute slower than in MyISAM due to tablespace complexity.
14.
What are HEAP tables in MySQL?
- HEAP tables are in-memory. They are usually used for high-speed temporary storage. No TEXT or BLOB fields are allowed within HEAP tables. You can only use the comparison operators = and <=>. HEAP tables do not support AUTO_INCREMENT. Indexes must be NOT NULL.
15.
How do you control the max size of a HEAP table?
- MySQL config variable max_heap_table_size.