1.
Another user has issued the statement LOCK TABLE pets FOR WRITE You can...
2.
Index analysis and optimization using ANALYZE and OPTIMIZE statements should...
3.
Which of the following best describes the scope of explicitly and implicitly set locks?
4.
When you acquire an advisory lock using GET_LOCK(), the lock is released if
5.
Which of the following best describes why table locking is often not desirable compared to page or row locking?
6.
With MyISAM table locking, deadlocks do not occur because:
7.
Which of the following (series of) statements will leave the three tables A, B and C locked for reading, writing and reading respectively once all statements have been executed?
8.
You want to lock the three tables a, b and c, and issue the following statements:
mysql> LOCK TABLES a READ;
mysql> LOCK TABLES b READ;
mysql> LOCK TABLES c READ;
Which tables are now locked?
9.
When choosing a storage engine for each of your tables, which things are to consider?
10.
Which of the following variables specify the default storage engine to use if no storage engine is specified when creating a table?