如何执行大型MySql数据插入脚本文件?

发布于 2024-11-24 04:13:36 字数 357 浏览 0 评论 0原文

尝试使用 PHPMyAdmin 不允许我执行 150Mb 数据脚本文件。你有什么解决办法吗?

更新

我的脚本是utf-8编码。

我已经更新了 php.ini 但仍然出现错误,如下快照所示。

[php.ini]

upload_max_filesize = 256M    
max_execution_time = 0    
memory_limit = 256M

在此处输入图像描述

Trying to use PHPMyAdmin doesn't allow me to execute 150Mb data script file. Do you have any work-around for me?

Update

My script is utf-8 encode.

I've update php.ini but all still get error as the below snapshot.

[php.ini]

upload_max_filesize = 256M    
max_execution_time = 0    
memory_limit = 256M

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

妞丶爷亲个 2024-12-01 04:14:11

使用本机 mysql 控制台客户端。要导入该文件,请使用

mysql -u [username] -p[password] [database_name] < [your_sql_file]

Use native mysql console client. To import that file use

mysql -u [username] -p[password] [database_name] < [your_sql_file]
李白 2024-12-01 04:14:10

max_execution_time = 1500 (这意味着 25 分钟)

默认执行时间为 30 秒,http://php.net/manual/en/info.configuration.php

Give max_execution_time = 1500 (Which means 25 minuets)

Default execution time is 30sec, http://php.net/manual/en/info.configuration.php

七秒鱼° 2024-12-01 04:14:08

在 Linux 上使用 split 或 Windows split 程序将脚本拆分为多个部分。然后一一加载。

Use split on linux or a windows split program to split your script in multiple parts. And then load them one by one.

神爱温柔 2024-12-01 04:14:06

试试这个: http://www.ozerov.de/bigdump/

Bigdump 还为您提供了更改字符集的功能

Try this: http://www.ozerov.de/bigdump/

Bigdump also provides you changing character set

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文