

mysqldump mydb --user=root --password=xxxx | gzip -c > mydb.mysql.dmp.gz
zcat mydb.mysql.dmp.gz | mysql mydb --user=root --password=xxxx
mysqldump -A --user=root --password=xxxx | gzip -c > all.mysql.dmp.gz





Basher52 wrote:I was reading the man for mysqldump and found something I sure thought was used by the database.
in the description of --single-transaction I found this:
"It is useful only with transactional tables such as InnoDB and BDB"
does this mean that if I use MyISAM databases and has made an update with more than one table and that fails somewhere down the line, has the update made the tables inconsistent?
if so, have they fixed this in MySQL 5 or do I have to use other types of databases to get this function?

Users browsing this forum: No registered users and 0 guests