Programming
MariaDB / MySQL: backup and restore a specific table
We just have to specify the name of the table we want to backup in the usual mysqldump command:
$ mysqldump -h hostname -u username -p database_name table_name > backup_table_name.sql
Then, to restore it:
mysql -u username -p database_name
Comments
No comment yet.
A remark, a suggestion? Do not hesitate to express yourself below. Just be courteous and polite, please.