MySQL Forums
Forum List  »  Partitioning

Re: How to make a backup from a partition
Posted by: Sepp Maier
Date: May 06, 2008 08:06AM

BACKUP:
create a backup with mysqldump with --tables and --where="partition key=x" for Partition p2

RESTORE:
LOCK TABLES tr WRITE;

ALTER TABLE tr DROP PARTITION p2;

ALTER TABLE tr REORGANIZE PARTITION p1, p2 ....

//Insertstatements from mysqldump
INSERT ...

UNLOCK TABLES;

Any comments?

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: How to make a backup from a partition
3123
May 06, 2008 08:06AM


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.