Apr 16
Import and Export Mysql Database
Category: mysql
Found this pretty useful
For exporting DB:
mysqldump -u username -ppassword database_name > FILE.sql
while importing DB:
mysql -u username -ppassword database_name < FILE.sql
 easy but useful.. =) oh.. and got it on this site: Clockwatchers thanks. =)
Finally seeing the light.. =)
Related posts:
- Unable to connect to the database:The MySQL adapter “mysql” is not available. Unable to connect to the database:The MySQL adapter "mysql" is...
- Importing CSV to mysql Importing CSV to mysql...
- MySql Error in ubuntu solving mysql error of error 1045 Access denied for user...
