Using mysqldump to export a database
mysqldump is a useful utility for dumping the contents of an entire database to an SQL file. [code] mysqldump --user=dbusername --password=dbpassword db_name_here > db_name_here.sql [/code] By default the –opt option is enabled, which is a shorthand option for specifying the Continue reading