Hello Guys, I'm troubling with one problem, actually I want to create a backup of
MYSQL database. So, could you tell me how to perform this task. Please resolve my problem as soon as possible.
Hello Pravesh Singh, It is not big issue, to resolve this problem you can use following query... Query: "SELECT * INTO OUTFILE '$backupFile' FROM $tableName"; Where, $backupFile -> is backup file name with path. $tableName -> is that table for which you create backup. I hope it might be helpful for you.
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.
It is not big issue, to resolve this problem you can use following query...
Query: "SELECT * INTO OUTFILE '$backupFile' FROM $tableName";
Where,
$backupFile -> is backup file name with path.
$tableName -> is that table for which you create backup.
I hope it might be helpful for you.