1

I need to backup my whole database.I have seen shell scripting.But is it possible to backup whole database using event scheduler. I have check the follwing link- Automating Backups using Event scheduler

It contains table backup not the database bavkup Thanks in advance

Kedar Limaye
  • 1,041
  • 8
  • 15

1 Answers1

0

use mysqldump to take backup. write a query to convert it into csv

  select * from table into outfile 'E:/path/' fields terminated by ',' lines terminated by '\n' ;
Birat Bose
  • 1,954
  • 1
  • 9
  • 11