MySQL Forums
Forum List  »  Backup

Re: how to backup just the data? and how to backup only the tables???
Posted by: Guilhem Bichot
Date: May 06, 2005 02:21AM

Hello,
mysqldump has several options which could help.
To have only INSERT into your mysqldump output, no CREATE TABLE, no CREATE DATABASE:
mysqldump --no-create-db --no-create-info
To have only CREATE TABLE:
mysqldump --no-data
You can just look at "mysqldump --help" for more info... time to experiment!

Mr. Guilhem Bichot <guilhem@mysql.com>
MySQL AB, Lead Software Engineer
Bordeaux, France
www.mysql.com

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: how to backup just the data? and how to backup only the tables???
14374
May 06, 2005 02:21AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.