View Single Post
  #2  
Old 11-23-2005, 11:33 PM
Winston Winston is offline
Administrator
 
Join Date: Jul 2005
Posts: 46
Default

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
Reply With Quote