I know how to restore MySQL DB with *.sql files.
But i don’t know how to import *.bin files. Content in this file is:
123456789|www.site-name.com 123789456|www.go.com 123987456|www.g1.net 987865432|www.site.org
Please help!
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
*.bin files are mysql logs. You can view these files with the command
mysqlbinloghttp://dev.mysql.com/doc/refman/5.0/en/mysqlbinlog.html
BUT looking at the content of the file, it appears to be just plain text file with | as a column separator. (The default column separator in mysql is TAB.)
You can load file with the following command
http://dev.mysql.com/doc/refman/5.0/en/load-data.html