Chapter 19 Study Questions Flashcards
A(n) ___________ includes the structure and content of database.
full backup
A(n) __________________ only contains changes that have been made to the structure and content of a database since the last full backup.
incremental backup
A(N) ______________________ allows one to restore the data up to any point in time.
point-in-time recovery
It is recommended that the database named ____ be included in backups, since this database stores information about the users and privileges for all databases on the server.
root
Use the _________ program to backup one or more databases on the server.
mysqldump
Use the _____ program to restore one or more databases by running the SQL script file that contains the database backup.
mysql
Use the ___________ program to execute all statements in the binary log that occurred after the last full backup.
mysqlbinlog
The process of backing up a database may also be referred to as _________ a database.
exporting
When a database is restored from a backup, the process may be referred to as _________ a database.
importing
To export data from a table to an external file, use a SELECT statement with a(n) ____________ clause.
into outfile
When using a SELECT statement to export data from a table to an external file the ______ clause is used to specify delimiters for the columns.
fields
The _________ statement may be used to import data from an input file into a table.
load data