I'm new to mysql. My requirement is to create a shell script to import a sql dump file into mysql in linux and this script should be called by java program for the restoration to take on a button click.
Please advice me on this.
Regards,
Chandu.
It can be done by using mysql
mysql --user=USERNAME --password=PASSWORD DATABASE < DATABASE.sql
EDIT:
To place this in a script:
file loaddb.sh:
mysql --user=USERNAME --password=PASSWORD DATABASE < $1.sql
add execute-permission by
chmod +x loaddb.sh
you would call it:
loaddb.sh YOURDBNAME
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With