copy-db
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:10k
源码类别:

MySQL数据库

开发平台:

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