"McShen" <[EMAIL PROTECTED]> wrote:

 > hi
 > 
 > how do i back up a mysql DB table? Can you please write me the code?

i would just stop the database server and dump the table to a file
with mysqldump, just run it from the command line for example:

/path/to/mysqldump -h host -p password -u username databasename >
/path/to/file

then you have a comple dump of your database and database structure.

-- 
Henrik Hansen


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to