2011
05.15
05.15
Often you have encountered problems while importing large databases via phpmyadmin. In that case, you can dump the mysql tables by using the following command.
for T in `mysql -N -B -e ‘show tables from database_name’`; do echo $T; mysqldump database_name $T > database_name_$T.gz ; done
Now you can restore the tables one by one through phpmyadmin.
No Comment.
Add Your Comment