tags:

views:

101

answers:

1

mysqlhotcopy hospital C:\Temp

I'm using the code above to backup the hospital database in MySQL. But it said that "no previous outfile available, you must give a filename."

How do I properly do it?

A: 

You need to specify a file path for the output, not just a directory.

mysqlhotcopy hospital C:\Temp\hospital

jackbot