Import/Export database using mysql/mariadb console
Sometime we got big database and stuck on the limit of phpMyAdmin upload limit, so here is the solution to import the big mysql file with command line:- First login to the mysql/mariadb using command:- mysql -u <username> -p <password> -h <hostname> mysql> use <database>; mysql> source <file path> Now your importing will start. Export […]