copy-db
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:10k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #!/usr/bin/perl
  2. # Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  3. #
  4. # This library is free software; you can redistribute it and/or
  5. # modify it under the terms of the GNU Library General Public
  6. # License as published by the Free Software Foundation; either
  7. # version 2 of the License, or (at your option) any later version.
  8. #
  9. # This library is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. # Library General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU Library General Public
  15. # License along with this library; if not, write to the Free
  16. # Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
  17. # MA 02111-1307, USA
  18. #
  19. # start initialition
  20. #
  21. $VER = "1.0";
  22. use Getopt::Long;
  23. use DBI;
  24. $max_row_length=500000; # Don't create bigger SQL rows that this
  25. $opt_lock=1; # lock tables
  26. chomp($pwd = `pwd`); $pwd = "." if ($pwd eq '');
  27. require "$pwd/server-cfg" || die "Can't read Configuration file: $!n";
  28. $|=1;
  29. $opt_from_server= $opt_to_server= "mysql";
  30. $opt_from_host= $opt_to_host=     "localhost";
  31. $opt_from_db= $opt_to_db=         "test";
  32. $opt_from_user=$opt_from_password=$opt_to_user=$opt_to_password="";
  33. $opt_help=$opt_verbose=$opt_debug=0;
  34. GetOptions("from-server=s","to-server=s","from-host=s","to-host=s","from-db=s",
  35.    "to-db=s", "help", "verbose","debug") || usage();
  36. usage() if ($opt_help || 
  37.     ($opt_from_server eq $opt_to_server && 
  38.      $opt_from_db eq $opt_to_db &&
  39.      $opt_from_host eq $opt_to_host));
  40. ####
  41. #### Usage
  42. ####
  43. sub usage
  44. {
  45.   print <<EOF;
  46. $0 version $VER by Monty
  47.  Copies tables between two database servers. If the destination table doesn't
  48.  exist it's autoamticly created.  If the destination table exists, it
  49.  should be compatible with the source table.
  50.  Because DBI doesn't provide full information about the columns in a table,
  51.  some columns may not have optimal types in a create tables.  Any created
  52.  tables will also not have any keys!
  53.   Usage: $0 [options] tables...
  54.   Options:
  55.   --help         Show this help and exit
  56.   --from-server   Source server (Default: $opt_from_server)
  57.   --from-host     Source hostname (Default: $opt_from_host)
  58.   --from-db       Source database name (Default: $opt_from_db)
  59.   --from-user   Source user (Default: $opt_from_password)
  60.   --from-password Source password (Default: $opt_from_password)
  61.   --to-server     Destination server (Default: $opt_to_server)
  62.   --to-host       Destination hostname (Default: $opt_to_host)
  63.   --to-db         Destination database name (Default: $opt_to_db)
  64.   --to-user   Destination user (Default: $opt_to_user)
  65.   --to-password   Destination password (Default: $opt_to_password)
  66.   --verbose   Be more verbose
  67.   If you the server names ends with _ODBC, then this program will connect
  68.   through ODBC instead of using a native driver.
  69. EOF
  70.    exit(0);
  71. }
  72. ####
  73. #### Connect
  74. ####
  75. $from_server=get_server($opt_from_server,$opt_from_host,$opt_from_db);
  76. $to_server=get_server($opt_to_server,$opt_to_host,$opt_to_db);
  77. $opt_user=$opt_from_user; $opt_password=$opt_from_password;
  78. print "- connecting to SQL serversn" if ($opt_verbose);
  79. $from_dbh=$from_server->connect() || die "Can't connect to source server $opt_from_server on host $opt_from_host using db $opt_from_db";
  80. $opt_user=$opt_to_user; $opt_password=$opt_to_password;
  81. $to_dbh=$to_server->connect() || die "Can't connect to source server $opt_to_server on host $opt_to_host using db $opt_to_db";
  82. ####
  83. #### Copy data
  84. ####
  85. foreach $table (@ARGV)
  86. {
  87.   print "- querying $tablen" if ($opt_verbose);
  88.   $sth=$from_dbh->prepare("select * from $table") || die "Can't prepare query to get $table; $DBI::errstr";
  89.   $sth->execute || die "Can't execute query to get data from $table; $DBI::errstr";
  90.   if (!table_exists($to_server,$to_dbh,$table))
  91.   {
  92.     print "- creating $tablen" if ($opt_verbose);
  93.     $table_def=get_table_definition($from_server,$from_dbh,$sth);
  94.     do_many($to_dbh,$to_server->create($table,$table_def,[]));
  95.   }
  96.   if ($opt_lock && $to_server->{'lock_tables'})
  97.   {
  98.     print "- locking $tablen" if ($opt_verbose);
  99.     $to_dbh->do("lock tables $table WRITE");
  100.   }
  101.   $columns=$sth->{NUM_OF_FIELDS};
  102.   $columns_to_quote=get_columns_to_quote($sth);
  103.   $insert_multi_value=$sth->{'insert_multi_value'};
  104.   $query="insert into $table values"; $result="";
  105.   print "- copying $tablen" if ($opt_verbose);
  106.   while (($row = $sth->fetchrow_arrayref))
  107.   {
  108.     $tmp="(";
  109.     for ($i=0 ; $i < $columns ; $i++)
  110.     {
  111.       if ($columns_to_quote->[$i])
  112.       {
  113. $tmp.= $to_dbh->quote($row->[$i]) . ",";
  114.       }
  115.       else
  116.       {
  117. $tmp.= $row->[$i] . ",";
  118.       }
  119.     }
  120.     substr($tmp,-1)=")"; # Remove last ','
  121.     if ($insert_multi_value)
  122.     {
  123.       $to_dbh->do($query . $tmp) || die "Can't insert row: $DBI::errstr";
  124.     }
  125.     elsif (length($result)+length($tmp) >= $max_row_length && $result)
  126.     {
  127.       $to_dbh->do($query . $result) || die "Can't insert row: $DBI::errstr";
  128.       $result="";
  129.     }
  130.     elsif (length($result))
  131.     {
  132.       $result.= ",$tmp";
  133.     }
  134.     else
  135.     {
  136.       $result=$tmp;
  137.     }
  138.   }
  139.   if (length($result))
  140.   {
  141.     $to_dbh->do($query . $result) || die "Can't insert row: $DBI::errstr";
  142.   }
  143.   if ($opt_lock && $to_server->{'lock_tables'})
  144.   {
  145.     $to_dbh->do("unlock tables");
  146.   }
  147. }
  148. sub get_table_definition
  149. {
  150.   my ($server,$dbh,$sth)=@_;
  151.   my ($i,$names,$types,$scale,$precision,$nullable,@res);
  152.   $names=$sth->{NAME};
  153.   $types=$sth->{TYPE};
  154.   $nullable=$sth->{NULLABLE};
  155.   if (0)
  156.   {
  157.     # The following doesn't yet work
  158.     $scale=$sth->{SCALE};
  159.     $precision=$sth->{PRECISION};
  160.   }
  161.   else
  162.   {
  163.     my (@tmp);
  164.     @tmp= (undef()) x $sth->{NUM_OF_FIELDS};
  165.     $precision= $scale= @tmp;
  166.   }
  167.   for ($i = 0; $i < $sth->{NUM_OF_FIELDS} ; $i++)
  168.   {
  169.     push(@res,$names->[$i] . " " .
  170.  odbc_to_sql($server,$types->[$i],$precision->[$i],$scale->[$i]) .
  171.  ($nullable->[$i] ? "" : " NOT NULL"));
  172.   }
  173.   return @res;
  174. }
  175. sub odbc_to_sql
  176. {
  177.   my ($server,$type,$precision,$scale)=@_;
  178.   if ($type == DBI::SQL_CHAR())
  179.   {
  180.     return defined($precision) ? "char($precision)" : "varchar(255)";
  181.   }
  182.   if ($type == DBI::SQL_NUMERIC())
  183.   {
  184.     $precision=15 if (!defined($precision));
  185.     $scale=6 if (!defined($scale));
  186.     return "numeric($precision,$scale)";
  187.   }
  188.   if ($type == DBI::SQL_DECIMAL())
  189.   {
  190.     $precision=15 if (!defined($precision));
  191.     $scale=6 if (!defined($scale));
  192.     return "decimal($precision,$scale)";
  193.   }
  194.   if ($type == DBI::SQL_INTEGER())
  195.   {
  196.     return "integer" if (!defined($precision));
  197.     return "integer($precision)";
  198.   }
  199.   if ($type == DBI::SQL_SMALLINT())
  200.   {
  201.     return "smallint" if (!defined($precision));
  202.     return "smallint($precision)";
  203.   }
  204.   if ($type == DBI::SQL_FLOAT())
  205.   {
  206.     $precision=12 if (!defined($precision));
  207.     $scale=2 if (!defined($scale));
  208.     return "float($precision,$scale)";
  209.   }
  210.   if ($type == DBI::SQL_REAL())
  211.   {
  212.     $precision=12 if (!defined($precision));
  213.     $scale=2 if (!defined($scale));
  214.     return "float($precision,$scale)";
  215.   }
  216.   if ($type == DBI::SQL_DOUBLE())
  217.   {
  218.     $precision=22 if (!defined($precision));
  219.     $scale=2 if (!defined($scale));
  220.     return "double($precision,$scale)";
  221.   }
  222.   if ($type == DBI::SQL_VARCHAR())
  223.   {
  224.     $precision=255 if (!defined($precision));
  225.     return "varchar($precision)";
  226.   }
  227.   return "date" if ($type == DBI::SQL_DATE());
  228.   return "time" if ($type == DBI::SQL_TIME());
  229.   return "timestamp" if ($type == DBI::SQL_TIMESTAMP());
  230.   return $server->{'text'} if ($type == DBI::SQL_LONGVARCHAR());
  231.   return $server->{'blob'} if ($type == DBI::SQL_LONGVARBINARY());
  232.   if ($type == DBI::SQL_BIGINT())
  233.   {
  234.     return "bigint" if (!defined($precision));
  235.     return "bigint($precision)";
  236.   }
  237.   if ($type == DBI::SQL_TINYINT())
  238.   {
  239.     return "tinyint" if (!defined($precision));
  240.     return "tinyint($precision)";
  241.   }
  242.   die "Can't covert type '$type' to a ODBC typen";
  243. }
  244. #
  245. # return an array with 1 for all coumns that we have to quote
  246. #
  247.       
  248. sub get_columns_to_quote($sth)
  249. {
  250.   my ($sth)=@_;
  251.   my ($i,@res,$type,$tmp);
  252.   @res=();
  253.   for ($i = 0; $i < $sth->{NUM_OF_FIELDS} ; $i++)
  254.   {
  255.     $type=$sth->{TYPE}->[$i];
  256.     $tmp=1; # String by default
  257.     if ($type == DBI::SQL_NUMERIC() || $type == DBI::SQL_DECIMAL() ||
  258. $type == DBI::SQL_INTEGER() || $type == DBI::SQL_SMALLINT() ||
  259. $type == DBI::SQL_SMALLINT() || $type == DBI::SQL_FLOAT() ||
  260. $type == DBI::SQL_REAL()  || $type == DBI::SQL_DOUBLE() ||
  261. $type == DBI::SQL_BIGINT() || $type == DBI::SQL_TINYINT())
  262.     {
  263.       $tmp=0;
  264.     }
  265.     push (@res,$tmp);
  266.   }
  267.   return @res;
  268. }
  269. #
  270. # Check if table exists;  Return 1 if table exists
  271. #
  272. sub table_exists
  273. {
  274.   my ($server,$dbh,$table)=@_;
  275.   if ($server->{'limits'}->{'group_functions'})
  276.   {
  277.     return !safe_query($dbh,"select count(*) from $table");
  278.   }
  279.   if ($server->{'limits'}->{'limit'})
  280.   {
  281.     return !safe_query($dbh,"select * from $table limit 1");
  282.   }
  283.   die "Don't know how to check if table '$table' exists in destination servern";
  284. }
  285. #
  286. # execute query;  return 0 if query is ok
  287. #
  288. sub safe_query
  289. {
  290.   my ($dbh,$query)=@_;
  291.   my ($sth);
  292.   print "query: $queryn" if ($opt_debug);
  293.   if (!($sth= $dbh->prepare($query)))
  294.   {
  295.     print "error: $DBI::errstrn" if ($opt_debug);
  296.     return 1;
  297.   }
  298.   if (!$sth->execute)
  299.   {
  300.     print "error: $DBI::errstrn" if ($opt_debug);
  301.     return 1
  302.   }
  303.   while ($sth->fetchrow_arrayref)
  304.   {
  305.   }
  306.   $sth->finish;
  307.   undef($sth);
  308.   return 0;
  309. }
  310. #
  311. # execute an array of queries
  312. #
  313. sub do_many
  314. {
  315.   my ($dbh,@statements)=@_;
  316.   my ($statement,$sth);
  317.   foreach $statement (@statements)
  318.   {
  319.     print "query: $statementn" if ($opt_debug);
  320.     if (!($sth=$dbh->do($statement)))
  321.     {
  322.       die "Can't execute command '$statement'nError: $DBI::errstrn";
  323.     }
  324.   }
  325. }