Fulltext results:
- MySQL: Backup @info:mysql:database
- h> # set or replace the variables $USER and $PASS DATE_YMD=$(date "+%Y-%m-%d") DATABASES=$(mysql --batch -u${USER} -p${PASS} mysql --execute='show databases')... dd-drop-table -u${USER} -p${PASS} ${DB} > ${DB}_${DATE_YMD}.sql & bzip2 ${DB}_${DATE_YMD}.sql & # sleep 10 # optional done wait # for child processes
- MySQL: Change Password @info:mysql:user
- an alternatively use the following: <code sql> UPDATE mysql.user SET Password=PASSWORD('{passwd}') WHER