当前位置: > shell编程 >

mysql纯文本格式备份的shell脚本

时间:2014-12-05 02:42来源:linux.it.net.cn 作者:IT
一段shell脚本,用于实现mysql的纯文本格式备份。

所谓的mysql纯文本格式数据,是在数据表中没有insert into这样的查询sql语句的存在,而只有类似如下:
 

'123','xxx','xxx','xxx'
'123','xxx','xxx','xxx'
'123','xxx','xxx','xxx'
'123','xxx','xxx','xxx'
 

的纯数据结构。
此种备份方式,可以节约很多存储空间。
不过此种备份的难度也要比传统的mysqldump要大。

本文以mysql数据库中的test数据库为例子,用shell脚本实现这种备份。

用到的shell 脚本,代码如下:
 

#!/bin/bash  
tables=`sudo /Applications/XAMPP/xamppfiles/bin/mysql -uroot -p test -e 'show tables'`  
echo $tables  
for i in $tables  
do  
    if [ $i = 'Tables_in_test' ]   
    then  
        continue      
    fi  
sudo /Applications/XAMPP/xamppfiles/bin/mysqldump -uroot -l -T /tmp/ test $i --fields-enclosed=\" --fields-terminated-by=,  
done  
执行脚本,即可把mysql数据和sql文件全部备份到/tmp/目录。

以下是恢复备份的shell 脚本,代码如下:
#!/bin/bash  
sqlList=`ls /tmp/*.sql`  
txtList=`ls /tmp/*.txt`  
for i in $sqlList  
do  
    sudo /Applications/XAMPP/xamppfiles/bin/mysql -uroot test < $i  
done  
for i in $txtList  
do  
    sudo /Applications/XAMPP/xamppfiles/bin/mysqlimport --user=root test --fields-enclosed-by=\" --fields-terminated-by=, $i  
done  
 

注意:
恢复时要把sql文件和txt分别导入进来,先把所有的sql文件导入进来,然后再导入数据文件txt即可。


 

(责任编辑:IT)
------分隔线----------------------------
栏目列表
推荐内容