如果資料檔超過2MB就沒有辦法用phpMyAdmin直接匯入檔案。
「.sql」檔案太大的話,則很容易遇到伺服器的執行時間或檔案大小的限制。
用BigDump這個php小程式來做MySQL資料匯入,就沒有2MB的限制
1.用文字編輯器打開bigdump.php,修改Database configuration後面的資料庫連線設定。
2.再把這個檔案上傳到Server上,和用phpMyAdmin產生的.sql備份檔放一起。
3.再去瀏覽 bigdump.php,選擇要匯入的檔案,就可以將資料完整的回存到資料庫裡面
http://www.ozerov.de/bigdump.php
使用unicode特別注意
{ $dbconnection = @mysql_connect($db_server,$db_username,$db_password);
在之後新增
@mysql_query("SET NAMES ‘utf8′");
才不會有亂碼問題。Version 0.28b 2007-06-08
- Improved error message for file open errors
- Handle CSV files (you have to specify $csv_insert_table)
- Restart script in the background using AJAX
沒有留言:
張貼留言