将 Mysqldump 输出分割成较小的文件以上传到容量有限的远程服务器
需要将大量数据从一个 MySQL 数据库传输到另一个 MySQL 数据库这种情况经常出现,但限制文件上传大小等限制可能会带来挑战。这在使用 phpMyAdmin 时尤其重要,因为它只允许小于 2MB 的压缩 .sql 文件。幸运的是,有一个解决方案可以克服这个障碍。
为了解决这个问题,mysqldump 的输出可以被精心分割成可管理的块,使它们能够以更小的形式上传。不幸的是,由于无法在远程服务器上将文件重新连接在一起,因此无法使用 split(1) 实用程序。
替代解决方案:对 MySQL 转储输出进行碎片化
以下 bash 脚本中展示了 split(1) 的实用替代方案。它巧妙地将数据库转储文件拆分为单独的 .sql 文件,每个文件对应一个不同的表。该脚本利用 csplit(一种用于拆分文件的多功能工具),并策略性地使用 START 来识别表边界。
#!/bin/bash # Adjust this to your specific scenario: START="/-- Table structure for table/" if [ $# -lt 1 ] || [[ == "--help" ]] || [[ == "-h" ]]; then echo "USAGE: extract all tables:" echo " DUMP_FILE" echo "extract one table:" echo " DUMP_FILE [TABLE]" exit fi if [ $# -ge 2 ]; then # Extract a specific table csplit -s -ftable "/-- Table structure for table/" "%-- Table structure for table \`\`%" "/-- Table structure for table/" "%40103 SET TIME_ZONE=@OLD_TIME_ZONE%1" else # Extract all tables csplit -s -ftable "$START" {*} fi [ $? -eq 0 ] || exit mv table00 head FILE=`ls -1 table* | tail -n 1` if [ $# -ge 2 ]; then # Cut off all other tables mv $FILE foot else # Cut off the end of each file csplit -b '%d' -s -f$FILE $FILE "/40103 SET TIME_ZONE=@OLD_TIME_ZONE/" {*} mv ${FILE}1 foot fi for FILE in `ls -1 table*`; do NAME=`head -n1 $FILE | cut -d$'\x60' -f2` cat head $FILE foot > "$NAME.sql" done rm head foot table*
该解决方案精心地将转储文件拆分为单个表特定的 .sql 文件,确保成功上传到即使文件容量有限也可以远程服务器。
以上是如何将大型 MySQL 转储文件拆分为较小的文件以克服上传大小限制?的详细内容。更多信息请关注PHP中文网其他相关文章!