Search Results

6
votes
4answers
815 views

Best way to backup MySQL data on Linux server

What is the best method to backup large (4 GB) MySQL databases. I currently use a cron job every night that mysqldumps everything and I keep 3 days of backups. Also what backup mech …
1
vote
3answers
1k views

How to generate a range of numbers in Mysql

How do I generate a range of consecutive numbers (one per line) from a mysql query so that I can insert them into a table? for example : nr 1 2 3 4 5 I wou …