zoukankan      html  css  js  c++  java
  • Python脚本传參和Python中调用mysqldump

    Python脚本传參和Python中调用mysqldump<pre name="code" class="python">#coding=utf-8
    import MySQLdb
    import sys
    import os
    
    # 李红颖编写,用户湖南CLV数据切割使用
    print 'dump database:',sys.argv[1] ##传入的第一个參数,数据库名称
    print 'dump table:',sys.argv[2]    ##传入的第二个參数,表名称
    dbname=sys.argv[1]
    tablename=sys.argv[2]
    
    
    #同步数据值分析server2:
    # region_id:B C D E
    dump101='mysqldump -h10.33.2.71 -uprobe -P5029 -pprobe@2014  --database '+dbname+' --table '+tablename+' -w"region_id in('B','C','D','E')" | mysql  -h192.168.106.101 -uprobe  -pprobe@2014 -P5029  '+dbname
    result=os.system(dump101)
    
    #同步数据值分析server3:
    # region_id:F G H I
    dump102='mysqldump -h10.33.2.71 -uprobe -P5029 -pprobe@2014  --database '+dbname+' --table '+tablename+' -w"region_id in('F','G','H','I')" | mysql  -h192.168.106.102 -uprobe  -pprobe@2014 -P5029  '+dbname
    result=os.system(dump102)
    
    #同步数据值分析server4:
    # region_id:J K L M N
    dump103='mysqldump -h10.33.2.71 -uprobe -P5029 -pprobe@2014  --database '+dbname+' --table '+tablename+' -w"region_id in('J','K','L','M','N')" | mysql  -h192.168.106.103 -uprobe  -pprobe@2014 -P5029  '+dbname
    result=os.system(dump103)
    

    
    
  • 相关阅读:
    vi 整行 多行 复制与粘贴
    FPGA设计—UVM验证篇 Hello world
    武汉市最大的二手车市场
    vim 使用技巧
    CentOS 7下的软件安装方法及策略
    搜索插件:ack.vim
    Vim插件管理
    【一】 sched.h
    Android USB驱动源码分析(-)
    在Python中反向遍历序列(列表、字符串、元组等)的五种方式
  • 原文地址:https://www.cnblogs.com/zfyouxi/p/4487447.html
Copyright © 2011-2022 走看看