maria-discuss team mailing list archive
-
maria-discuss team
-
Mailing list archive
-
Message #02319
MariaDB 10: how to convert Aria table to InnoDB?
-
To:
Mailing-List mariadb <maria-discuss@xxxxxxxxxxxxxxxxxxx>
-
From:
Reindl Harald <h.reindl@xxxxxxxxxxxxx>
-
Date:
Mon, 02 Mar 2015 14:09:09 +0100
-
Openpgp:
id=7F780279; url=http://arrakis.thelounge.net/gpg/h.reindl_thelounge.net.pub.txt
-
Organization:
the lounge interactive design
-
User-agent:
Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0
how do someone convert a Aria table to another engine?
MyISAM and InnoDB results in the same error
___________________________________________________________
MariaDB [dbmail]> ALTER TABLE `systemevents` ENGINE = InnoDB;
ERROR 1478 (HY000): Table storage engine 'InnoDB' does not support the
create option 'TRANSACTIONAL=1'
MariaDB [dbmail]> ALTER TABLE `systemevents` TRANSACTIONAL=0;
Query OK, 0 rows affected (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 0
MariaDB [dbmail]> ALTER TABLE `systemevents` ENGINE = InnoDB;
ERROR 1478 (HY000): Table storage engine 'InnoDB' does not support the
create option 'TRANSACTIONAL=1'
___________________________________________________________
CREATE TABLE `systemevents` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`DeviceReportedTime` datetime DEFAULT NULL,
`FromHost` varchar(30) CHARACTER SET latin1 COLLATE latin1_german1_ci
NOT NULL,
`Message` text,
`SysLogTag` varchar(60) DEFAULT NULL,
PRIMARY KEY (`ID`),
KEY `FromHost` (`FromHost`),
KEY `SysLogTag` (`SysLogTag`),
KEY `DeviceReportedTime` (`DeviceReportedTime`)
) ENGINE=Aria AUTO_INCREMENT=698044 DEFAULT CHARSET=utf8 PACK_KEYS=0
PAGE_CHECKSUM=0 DELAY_KEY_WRITE=1 ROW_FORMAT=PAGE TRANSACTIONAL=0
Attachment:
signature.asc
Description: OpenPGP digital signature
Follow ups