Friday, August 21, 2009
mysqldump utf8
Keywords: mysqldump options, mysqldump
mysqldump utf8
The following mysqldump option helps us specifying the charset we want the dump option to use
If no character set is specified, mysqldump uses utf8 (some older versions use latin1)
Keywords: mysqldump options, mysqldump
mysqldump utf8
The following mysqldump option helps us specifying the charset we want the dump option to use
--default-character-set=charset_name
Example:
# mysqldump -u username -ppassword --databases database1,database2,databasen --default-character-set=charset_name
If no character set is specified, mysqldump uses utf8 (some older versions use latin1)
Keywords: mysqldump options, mysqldump
Subscribe to:
Post Comments
(
Atom
)
1 comment :
I created something earlier today that uses the mysqldump and then emails the .sql file to a recipient(s), best thing is you can schedule it in a cron job :) if you are interested see the source code here:
http://www.thephpanswers.com/viewtopic.php?f=11&t=8&start=0
Post a Comment