Posts Tagged by import db
Import and export big db in linux
| September 14, 2009 | Posted by Subikar under linux, phpmyadmin |
Here is my short blog post lets share with my friends who are learning linux and want to import or export data to phpmyadmin using linux. So here is the code for that. Data Export in linux mysqldump -u dbusername -h dbhost -pdbpassword dbname > dbname.sql Data Import in linux mysql -u dbusername -h dbhost…