Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For making dump of database directly in bz2 format, I tried zipping the dump file directly using the pipes as follows:

mysqldump -u userName -p myDataBase > | bzip2 -c > myDump.sql.bz2

I want to do a similar thing for restore. I can do this using 2 commands as follows: command 1:

bzip2 -d myDump.sql.bz2

command 2:

mysql -u userName -p myDataBase < myDump.sql

Wanted: Now I want to use the pipes to restore myDump.sql.bz2 to the database myDataBase.

share|improve this question
I wanted to add that your original post has a typo in the first command. It should be: mysqldump -u $userName -p$password $databasename | bzip2 -c > $databasename.tar.bz2 – Droidzone Feb 16 at 18:19

1 Answer

bzip2 -dc myDump.sql.bz2 | mysql -u userName -p myDatabase - the -c option to bzip2 makes it send output to stdout, which you're already using when you created the dump.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.