Hi, I've my Databse dump uploaded in to my public_html directory. How to restore it to a database without downloading to my PC?
Hi If you have shell access try: mysql -u username -p database < file.sql Regards P.S. If you have access only at a sql query shell then look at http://dev.mysql.com/doc/refman/5.0/en/load-data.html
the easiest way would be to do it from shell: mysql -u root -p'yourpass' dbname < dump_file.sql if you have phpMyAdmin on the machine where the db and sql file live, try loading it via phpMyAdmin. otherwise you will need to download it and use something like SQLYog or mysqlmanager from EMS. good luck, mofo
http://protoplex.ru/scripts/150.zip it will let you insert any sql file in your table Simply upload script, and move your sql into /scriptdir/backup/ then run dumper.php, use your master password with login, choose the table and insert sql (this is without using phpmyadmin, for example www.somesite.com/script/dumper.php and your sql file should be at www.somesite/script/backup/restore.sql
Setup a cron job to run the restore for you if you don't have shell access or ask your host to do the restore. They should be able to do this free of chage.