gpt4 book ai didi

php - 在 mysql 表中找到 "problematic"行将无法导出

转载 作者:可可西里 更新时间:2023-11-01 07:52:51 26 4
gpt4 key购买 nike

我想 backup my database with PHP .

我测试了链接脚本,但它永远不会结束,我试图在查询之前添加 repair $table 但它没有帮助。

所以我想如果我只是跳过两个表(你可以在代码中看到)那么它工作正常:

<?

error_reporting(E_ALL);
ini_set('error_reporting',1);
require('../basedatos.php');

echo 'included<br>';
/* backup the db OR just a table */
function backup_tables($host,$user,$pass,$name,$tables = '*')
{


echo '1<br>';
//get all of the tables
if($tables == '*')
{
$tables = array();
$result = mysql_query('SHOW TABLES') or die(msyql_error());
while($row = mysql_fetch_row($result))
{
$tables[] = $row[0];
}
}
else
{
$tables = is_array($tables) ? $tables : explode(',',$tables);
}
echo '2<br>';
//cycle through
foreach($tables as $table)
{
if($table == 'etiquetas' || $table == 'links') continue;
$repair = mysql_query("REPAIR table $table") or die(mysql_error());
echo '3- '.$table.'<br>';
$result = mysql_query('SELECT * FROM '.$table) or die(msyql_error());
$num_fields = mysql_num_fields($result);

$return.= 'DROP TABLE '.$table.';';
$row2 = mysql_fetch_row(mysql_query('SHOW CREATE TABLE '.$table)) or die(msyql_error());
$return.= "\n\n".$row2[1].";\n\n";

for ($i = 0; $i < $num_fields; $i++)
{
while($row = mysql_fetch_row($result))
{
$return.= 'INSERT INTO '.$table.' VALUES(';
for($j=0; $j<$num_fields; $j++)
{
$row[$j] = addslashes($row[$j]);
$row[$j] = ereg_replace("\n","\\n",$row[$j]);
if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; }
if ($j<($num_fields-1)) { $return.= ','; }
}
$return.= ");\n";
}
}
$return.="\n\n\n";

}
echo '4<br>';
//save file
$handle = fopen('db-backup-'.time().'-'.(md5(implode(',',$tables))).'.sql','w+');
fwrite($handle,$return);
fclose($handle);
}
backup_tables('localhost','username','password','*');
?>

有什么方法可以找到给我带来问题的行,以便我可以编辑/删除它们?

-附言-

此外,如果我不跳过它们,我不会收到任何错误(脚本永远不会结束,这就是为什么我添加了一些丑陋的日志..,知道为什么吗?

-编辑-

此外,如果我尝试通过例如 sqlBuddy 导出数据库,我也会遇到错误:

enter image description here

最佳答案

正如许多人所说,这个脚本(以及简单的“通过 PHP 进行 MySQL 转储”)远非最佳,但总比没有备份好。

由于您只能使用 PHP 访问数据库,因此您应该使用它来找出问题所在。

这是对您的脚本的改编,它只会将一个表转储到一个文件中。它是一个调试脚本,而不是用于生产的导出工具(但是,用它做你想做的事),这就是为什么它在保存表的每一行后输出调试。

正如 Amit Kriplani 所建议的那样,每次迭代都会将数据附加到目标文件,但我认为 PHP 内存不是您的问题,如果内存不足或至少是 HTTP 500,您应该会收到 PHP 错误应该由服务器抛出而不是永远运行脚本。

function progress_export( $file, $table, $idField, $offset = 0, $limit = 0 )
{

debug("Starting export of table $table to file $file");

// empty the output file
file_put_contents( $file, '' );
$return = '';


debug("Dumping schema");

$return.= 'DROP TABLE '.$table.';';
$row2 = mysql_fetch_row(mysql_query("SHOW CREATE TABLE $table"));
$return.= "\n\n".$row2[1].";\n\n";


file_put_contents( $file, $return, FILE_APPEND );

debug("Schema saved to $file");




$return = '';

debug( "Querying database for records" );

$query = "SELECT * FROM $table ORDER BY $idField";

// make offset/limit optional if we need them for further debug
if ( $offset && $limit )
{
$query .= " LIMIT $offset, $limit";
}

$result = mysql_query($query);

$i = 0;
while( $data = mysql_fetch_assoc( $result ) )
{
// Let's be verbose but at least, we will see when something goes wrong
debug( "Exporting row #".$data[$idField].", rows offset is $i...");

$return = "INSERT INTO $table (`". implode('`, `', array_keys( $data ) )."`) VALUES (";
$coma = '';

foreach( $data as $column )
{
$return .= $coma. "'". mysql_real_escape_string( $column )."'";
$coma = ', ';
}

$return .=");\n";

file_put_contents( $file, $return, FILE_APPEND );

debug( "Row #".$data[$idField]." saved");

$i++;

// Be sure to send data to browser
@ob_flush();
}

debug( "Completed export of $table to file $file" );
}



function debug( $message )
{
echo '['.date( "H:i:s" )."] $message <br/>";
}


// Update those settings :

$host = 'localhost';
$user = 'user';
$pass = 'pwd';
$base = 'database';

// Primary key to be sure how record are sorted
$idField = "id";

$table = "etiquetas";

// add some writable directory
$file = "$table.sql";


$link = mysql_connect($host,$user,$pass);
mysql_select_db($base,$link);




// Launching the script
progress_export( $file, $table, $idField );

编辑脚本末尾的设置并针对您的两个表之一运行它。

您应该在脚本仍在处理时看到输出,并获得有关正在处理的行的一些引用,如下所示:

[23:30:13] Starting export of table ezcontentobject to file ezcontentobject.sql

[23:30:13] Dumping schema

[23:30:13] Schema saved to ezcontentobject.sql

[23:30:13] Querying database for records

[23:30:13] Exporting row #4, rows offset is 0...

[23:30:13] Row #4 saved

[23:30:13] Exporting row #10, rows offset is 1...

[23:30:13] Row #10 saved

[23:30:13] Exporting row #11, rows offset is 2...

[23:30:13] Row #11 saved

[23:30:13] Exporting row #12, rows offset is 3...

[23:30:13] Row #12 saved

[23:30:13] Exporting row #13, rows offset is 4...

[23:30:13] Row #13 saved

etc.

如果脚本完成...

好吧,你会有一个表的备份(注意,我没有测试生成的 SQL)!

我猜它不会完成:

如果脚本没有到达第一个“Exporting row...”调试语句

那么问题出在查询的时候。

然后你应该尝试用偏移量和限制参数来限制查询,继续二分法找出它卡在哪里

生成查询的示例仅限于前 1000 个结果。

// Launching the script
progress_export( $file, $table, $idField, 0, 1000 );

如果脚本显示一些行在挂起之前被导出

在确定显示的最后一行 id 之前,您应该尝试:

  1. 再次运行脚本,看它是否卡在同一行。这是为了查看我们是否面临“随机”问题(它从来都不是真正随机的)。

  2. 为函数调用添加一个偏移量(参见可选参数),然后第三次运行脚本,看它是否仍然卡在同一行。

例如 50 作为偏移量,一些大数字作为限制:

// Launching the script
progress_export( $file, $table, $idField, 50, 600000 );

这是为了检查它自己的行是否导致了问题,或者它是否是临界行数/数据量...

  • 如果每次都返回相同的最后一行,请检查并反馈给我们。

  • 如果添加偏移量以可预测的方式更改最后处理的行,我们可能会在某处遇到资源问题。

如果您不能在分配的资源上玩游戏,那么解决方案就是将导出拆分成多个 block 。您可以使用接近于此的脚本来完成此操作,输出一些 HTML/javascript,以自身重定向,以偏移量和限制作为参数,而导出未完成(如果这是我们最终需要的,我将编辑答案)

  • 如果行几乎每次都改变,它会变得更复杂......

一些线索:

我没有任何使用 VPS 的经验,但是你们对 CPU 使用没有一些限制吗?

如果您一次使用过多的资源,您的进程是否会以某种方式排队?

那些没有问题的转储表呢?是否有与导致问题的两个表一样大的表?

关于php - 在 mysql 表中找到 "problematic"行将无法导出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18000676/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com