View Single Post
Old 07-18-2006, 09:41 PM   #2 (permalink)
captobvious
Insane
 
captobvious's Avatar
 
Location: Somewhere
It's most likely looking for a text file with a sequence of SQL commands. That's what a backup of a MySQL database is anyway. Fortunately, there's a utility that comes with MySQL that generates this file for you called mysqldump. Here's the command to use it:

mysqldump –-user username –-password=password databasename > data.sql

You should replace the values in italics with your info.

That command will dump everything from the databasename you specify into the "data.sql" file. This is the text file you should try importing to your account on GoDaddy.

For a more detailed explanation, check out this article. Hope that helps.
captobvious is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38