MySQL Forums
Forum List  »  Archive Storage Engine

Re: Archiving and Retrieving data using java with mysql
Posted by: Ijaz Rashid
Date: January 09, 2007 12:25AM

Hi bryan,

You can use archive engine for archiving old data from primary to secondary disk.
Create your table using partition on Date column.
When you don't need data of older duration on primary disk, move the partition to secondary disk using Symbolic Link "symlink".
Using Symbolic Link data will remain avilible at both primary and secondary disk within same table.

(Note: I did it on myisam using mysql 4.1, I implemented my own partitioing using different tables bcz partitioining was not avilible in 4.1)

ijaz

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: Archiving and Retrieving data using java with mysql
6311
January 09, 2007 12:25AM


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.