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.