11-23-2005, 11:33 PM
|
Administrator
|
|
Join Date: Jul 2005
Posts: 46
|
|
Hi, if you have access to shell try...
Code:
# make a backup (http://dev.mysql.com/doc/mysql/en/mysqldump.html)
# capitalizations represent your database information
shell> mysqldump -h HOST -u USER -p --opt DATABASE TABLE > search.sql
# import a backup (http://dev.mysql.com/doc/mysql/en/mysql.html)
# capitalizations represent your database information
shell> mysql -h HOST -u USER -p DATABASE < search.sql
|