MySQL Forums
Forum List  »  Maria

Re: How Maria will be a Solution data sercuryt?
Posted by: Guilhem Bichot
Date: March 06, 2009 02:28AM

Hello.
The Maria engine in MySQL 6.0 is similar to MyISAM but also supports multiple concurrent INSERTs (except if the table contains an auto_increment column , or an R-tree, or fulltext index), and has crash-recovery.
To convert a MyISAM table to Maria:
ALTER TABLE <yourtable> ENGINE=Maria;
Note: Maria is alpha quality, MyISAM is production quality. So, don't keep critical data only in Maria. It isn't stabilized yet.

Options: ReplyQuote


Subject
Written By
Posted
Re: How Maria will be a Solution data sercuryt?
March 06, 2009 02:28AM


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.