Hi Pravesh Singh, To restore MySQL database backup file, you have just use LOAD DATA INFILE query like this... Query:LOAD DATA INFILE '$backupFile' INTO TABLE $tableName ; Where, $backupFile -> is backup file name with path. $tableName -> is table name in which you will load or insert data. I hope it will be solve your problem.
Join MindStick Community
You need to log in or register to vote on answers or questions.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
To restore MySQL database backup file, you have just use LOAD DATA INFILE query like this...
Query: LOAD DATA INFILE '$backupFile' INTO TABLE $tableName ;
Where,
$backupFile -> is backup file name with path.
$tableName -> is table name in which you will load or insert data.
I hope it will be solve your problem.