Claudio V wrote:
I used to have a lot of problems trying to concatenate the data files from the SQL dumps using Windows XP as an OS but thanks to Brion Vibber and other I figure it out.
What I did to solve it is use Cygwin:
Download and install Cygwin.
Open Cygwin by clicking on the icon from your desktop and go to the location of your hard drive where the split files are situated.
To concatenate multiple files into a single file you could do: $ cat xaa xab xac xad xae > old_table.sql.bz2 or $ cat xa? > old_table.sql.bz2
Note that UnxUtils also has cat and bunzip2, which may be more convenient than Cygwin for some people:
http://unxutils.sourceforge.net/
-- Tim Starling