我正在尝试将数据从我的旧 MySql 服务器传输到我的新服务器,我曾尝试使用 SQL Dumper,但我一直在获取Error 500
表是一团糟,一半是 MyISAM,另一半是 InnoDB,服务器正处于最后阶段说实话。
我正在考虑使用iframes
并GET
请求传输数据(下面的示例)。如果有人有更好的想法,将不胜感激。
我要转移的表有 3600 万条记录,我已经对其进行了测试,粗略计算,转移所有记录需要几个月的时间。我知道下面的方法可能是最低效的方法,但我想不出任何其他方法。
$result = mysql_query("SELECT * FROM nu_list $limit");
while($row = mysql_fetch_array( $result )) {
print "<iframe src="http://mynewsite.com/add.php?row1=$row[1]&row2=$row[2]&row3=$row[3]"
frameborder="0" scrolling="no" WIDTH="1" HEIGHT="1">\n"; }
$nxt = $_GET["pageno"] + 1;
if($nxt < $lastpage) {
print "<BODY>
<script type=\"text/javascript\">
<!--
window.location = \"/ripw3.php?pageno=$nxt&lastpage=$lastpage\"
//-->
</script>
</BODY>
</HTML>\n";