oldguo-MySQL 8.0 OCP 原题解析-Q7
2021-05-25 本文已影响0人
MySQL_oldguo
Question 7:
A valid raw backup of the shop.customers MyISAM table was taken.
You must restore the table.
You begin with these steps:
Which two actions are required to complete the restore?
![](https://img.haomeiwen.com/i16956686/26ab3269f44ffad0.png)
A) mysql> IMPORT TABLE FROM /var/tmp/customers.sdi
B) mysql> ALTER TABLE shop.customers DISCARD TABLESPACE
C) shell> cp /backup/customers.sdi /var/tmp
D) mysql> ALTER TABLE shop.customers IMPORT TABLESPACE
E) mysql> SOURCE '/var/tmp/customers.sdi'
F) shell> cp /backup/customers.frm /var/lib/mysql/shop/
G) mysql> IMPORT TABLE FROM /var/lib/mysql/shop/customers.sdi
H) shell> cp /backup/customers.sdi /var/lib/mysql/shop/