Q470
To reload a delimited text data file use . . . . . . . .
A.
mysqldump
B.
mysqld
C.
mysqlimport
AnswerD.
mysqlnaive
Answer: Option C
Solution
Answer: Option C
Solution:
This question asks you about how to import data from a text file into a MySQL database.
Here's the breakdown of the options:
* Option A: mysqldump - This is used to create a backup of your database, not to import data.
* Option B: mysqld - This is the MySQL server itself. You can't directly import data with this.
* Option C: mysqlimport - This is the correct answer! mysqlimport is a command-line utility specifically designed for importing data from delimited text files into MySQL databases.
* Option D: mysqlnaive - This isn't a real MySQL command.
So, the answer is Option C: mysqlimport