How can you back up a MariaDB database?

How can you back up a MariaDB database?

a) Using the SQL command BACKUP DATABASE
b) Using the mysqldump command-line tool
c) By exporting the data as a text file
d) By using a GUI tool like MySQL Workbench

Answer:

b) Using the mysqldump command-line tool

Explanation:

The mysqldump tool is commonly used to back up MariaDB databases by exporting the database schema and data to a text file.

Reference:

MariaDB Quiz – MCQ Questions and Answers

Scroll to Top