Existing users, log in.  New users, create a free account.  Lost password?

Mac OS X  |  IT & Network Administration  |  Other Network / Admin  |  MySQL BackUp

MySQL BackUp

MySQL BackUp - 1.1

back up MySQL databases

All Time: (2.7)
This Version: Not rated (0.0)
Current Version: 1.1
Release Date: 2004-05-07
License: Freeware
Downloads (this version): 4,648
Downloads (all versions): 8,360

Information Related to Version:

Broken Link? Newer Version? Tell us!

Product Description:

MySQL BackUp is a small app, programming in AppleScript Studio who allows you to quickly backup (locally or not) your MySQL databases (without the Terminal).

What's new in this version:

  • Source Code optimisation
  • Using a standard save panel
  • Add option to the backup: only structure, add drop table, create table and create db statement
  • Implentation of the "Help" Menu
  • Now it's possible to drag-n-drop the app to the dock to keep it in the dock
  • New icon create by http://www.buyicons.com
  • Corrected the bug where all the file path was include in the compressed backup

Operating System Requirements:

This product is designed to run on the following operating systems:

  • Mac OS X 10.3

Additional Requirements:

  • Mac OS X 10.3.x
  • MySQL 3.23.48 or higher (version 4.0.x is supported) on the local computer

Screenshots:

Download Links:

Your Installed Versions:


 

Feedback Summary:

This Version:
Overall Rating: Not rated (0.0) Features: Not rated (0.0) Support: Not rated (0.0)
Ease of Use: Not rated (0.0) Quality / Stability: Not rated (0.0) Price: Not rated (0.0)
Add Your Feedback

Key to Types of Feedback:

ReviewsReviews   TroubleshootingTroubleshooting   Usage TipsUsage Tips   Developer NotesDeveloper Notes   CommentaryCommentary   Featured ReviewsFeatured Reviews

MySQL BackUp Usage Tipbrain freeze - Version: 1.0.2, 3/24/2004 11:49AM PST

(1 of 2 users found this comment useful)

grikdog
# Terminal is used for testing scripts that you intend to run using cron.  Script it,
# crontab it, forget it.  Done once, done right (enough), repeats at intervals forever.

#!/bin/sh

if [ ! -e /Users/me/Desktop/mysql_backup.sql.bz2 ]
then
	if /usr/local/mysql/bin/mysqladmin --user=me --password=xxxxxxxx refresh
	then
		if /usr/local/mysql/bin/mysqldump --opt --all-databases --user=me --password=xxxxxxxx >/tmp/mysql_backup.sql
		then
			if /sw/bin/bzip2 /tmp/mysql_backup.sql
			then
				if mv /tmp/mysql_backup.sql.bz2 /Users/me/Desktop
				then
					chown me:admin /Users/me/Desktop/mysql_backup.sql.bz2
				fi
			fi
		fi
	fi
fi

Post a commentAlert Admin

MySQL BackUp Commentaryfast, but - Version: 1.0.2, 3/24/2004 11:16AM PST

COOLFACTOR
When I chose the Tar & Gzip option, not it compressed the file into a series of folders that matched the destination directory, which is odd.

So, if I chose "/Users/myaccount/Backups" as the destination, it would create an archive that contained that folder structure, so when I expand it, I actually have: "/Users/myaccount/Backups/Users/myaccount/Backups/".

Other than that, and the option to add "DROP TABLE", it's a lot better than using phpMyAdmin for backups.

Thanks for a needed app.
Post a commentAlert Admin

Most Recent Replies: View All 1 Replies

MySQL BackUp Reviewbuggy - Version: 1.0.1, 12/5/2003 03:26PM PST

(0 of 2 users found this comment useful)

macubergeek
unuseable
very buggy
Post a commentAlert Admin