MySQL- Is it possible to backup mySQL database within a period of time? -
i going backup mysql database in period of time. example: backup data january june.
is possible that? reason want don't want database old. if possible please give me suggestion how that. thanks.
i assuming want backup table rows based on date, not tables themselves.
if tables have date
or timestamp
column, can backup rows based on date using into outfile
query, example.
or, command line, use mysqldump --where
option.
see answer: mysql dump rows
Comments
Post a Comment