Snippet Name: mySQL DUMP command
Description: Shows creating a mySQL dump from the SSH or Telnet command line.
Comment: (none)
Language: MYSQL
Highlight Mode: MYSQL
Last Modified: February 26th, 2009
|
-- Creates a file named "test.sql" in the "/home/mydomain/backup/" directory:
mysqldump DTABASENAME -uUSERNAME -pPASSWORD > /home/mydomain/backup/test.sql; |