Read Replicas require a transactional storage engine and are only supported for the _________ storage engine
A.
OracleISAM
B.
MSSQLDB
C.
InnoDB
D.
MyISAM
Read Replicas require a transactional storage engine and are only supported for the _________ storage engine
Read Replicas require a transactional storage engine and are only supported for the _________ storage engine
A.
OracleISAM
B.
MSSQLDB
C.
InnoDB
D.
MyISAM
C, InnoDB
http://www.aiotestking.com/amazon/read-replicas-require-a-transactional-storage-engine-and-are-only-supported-for-the-_-storage-engine/
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”.
If you need the database to enforce foreign key constraints, or you need the database to support transactions (i.e. changes made by two or more DML operations handled as single unit of work, with all of the changes either applied, or all the changes reverted) then you would choose the InnoDB engine, since these features are absent from the MyISAM engine.
Those are the two biggest differences. Another big difference is concurrency. With MyISAM, a DML statement will obtain an exclusive lock on the table, and while that lock is held, no other session can perform a SELECT or a DML operation on the table.
Those two specific engines you asked about (InnoDB and MyISAM) have different design goals. MySQL also has other storage engines, with their own design goals.
So, in choosing between InnoDB and MyISAM, the first step is in determining if you need the features provided by InnoDB. If not, then MyISAM is up for consideration