On Mon, 2 Aug 2004, Timwi wrote:
Stuart Ayre wrote:
What can I use to join the SQL dump files?
In Linux/Unix: cat (e.g. cat xa xb > target_file.sql)
In Windows/DOS: copy (e.g. copy xa+xb target_file.sql)
Under Windows, use the /b switch to ensure that no funny cr-lf translation will occur:
copy /b xa+xb+xc target.sql
Alfio