Answers for "mySql command to take the database dump"

SQL
3

mysql dump database command line linux

mysqldump -u<user_name> -p<user_password> <database_name> > <file_name>.sql
Posted by: Guest on April-28-2020
0

import mysql dump command line

mysql> use db_name;
mysql> source backup-file.sql;
Posted by: Guest on January-20-2021

Code answers related to "mySql command to take the database dump"

Code answers related to "SQL"

Browse Popular Code Answers by Language