mysql資料庫匯入sql檔案一直提示不成功

126雲發表於2021-01-26

mysql資料庫匯入sql檔案不成功,sqlyog匯入資料檔案問題,一直提示報錯資訊:
There was an error while executing a query.
The query and the error message has been logged at:
C:\Users\administrator\AppData\Roaming\SQLyog\sqlyog.err.
Please click on "Open Error File..." to open the error file.

QQ圖片20180326185330.png


解決方法如下:

在mysql的安裝路徑中找到my.ini,修改引數配置
[mysqld]下面新增:max_allowed_packet=768M 引數大小自己定
修改完畢後重啟mysql服務(net stop mysql關閉,net start mysql 啟動;或在計算機-->管理-->服務中找到mysql手動重啟)

進入mysql檢視是否成功:
show variables like '%max_allowed_packet%';

顯示如下:
max_allowed_packet | 805306368 說明修改成功了。


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69957453/viewspace-2753015/,如需轉載,請註明出處,否則將追究法律責任。

相關文章