I have a 400MB large sql backup file. I\'m trying to import that file into MySQL database using WAMP->import, but the import was unsuccessful due to many reasons such as upl
Use this from mysql command window:
mysql> use db_name; mysql> source backup-file.sql;