Pario TechnoBlob
About
Posts
Tag: mysqldump
Backup mysql databases into separate files
This bach script makes separate backup files of all the databases in mysql and saves the result in the mysql_backup folder. #!/bin/bash -v USERNAME='yourusername'...
Script to backup MySql database
#!/bin/bash # Shell script to backup MySql database # To backup Nysql databases file to /backup dir and later pick up by your # script. You can skip few databases from backup...
Shell script to backup mySQL database
Shell script to backup MySql database mysql-backup.bash #!/bin/bash # Shell script to backup MySql database # To backup Nysql databases file to /backup dir and later pick up...
Export mysql data to a tab-separated file
mysqldump -u root -p --no-create-info -T=/tmp --fields-terminated-by='\t' db tabell
««
«
1
2
»
»»