hi,can some one help me
How to take database back up in Mysql and also to restore it back.
regards,
sajith
hi,can some one help me
How to take database back up in Mysql and also to restore it back.
regards,
sajith
How to take database back up in Mysql and also to restore it back.
Dear Anser,Many Many thanks for ur Help
Regards,
sajith
sajith:
You can do a backup/restore using your own code.
Please take a look to MySql manual
http://dev.mysql.com/doc/refman/5.0/es/backup.html
Regards
anserkk wrote:
I understand that there are some difficulties for taking MySQL backup from an application using the command line tool "mysqldump.exe" either from FWH, VB or any application
anserkk wrote:
Do you have any sample for Restore ?
Hello,,,
I use this command for backup....
SELECT * INTO OUTFILE 'e:\BACKUPS\productos.txt' FROM productos
for restore....
LOAD DATA INFILE 'e:\BACKUPS\productos.txt' INTO TABLE productos
Regards
Willi
PD (my English is bad,,, sorry)
Hi,,,
SELECT * INTO OUTFILE 'e:\BACKUPS\productos.txt' FROM productos
and
LOAD DATA INFILE 'e:\BACKUPS\productos.txt' INTO TABLE productos
is available only on the PC with MySQL Server
Regards
Willi
SELECT * INTO OUTFILE 'e:\BACKUPS\productos.txt' FROM productos
and
LOAD DATA INFILE 'e:\BACKUPS\productos.txt' INTO TABLE productos
Dear Mr. Anser
You want to make a backup of data or want to export data?
for backup, you must first create the database from your application and may make the restore from the txt file
personally successfully use this sentence to all tables in the database .
Regards
Willi