Ver Mensaje Individual
  #1 (permalink)  
Antiguo 30/07/2010, 08:11
Tram
 
Fecha de Ingreso: noviembre-2006
Mensajes: 82
Antigüedad: 17 años, 6 meses
Puntos: 0
#1286 - Unknown table engine 'InnoDB'

Hola,

Estoy creando tablas a través de phpmyadmin.
Cuando ejecuto este código:

CREATE TABLE GRUPO (
IDGRUPO VARCHAR(3) NOT NULL,
DESCRIPCION_GRUPO VARCHAR(10),
PRIMARY KEY (IDGRUPO)
)
ENGINE=InnoDB;

me aparece el error: #1286 - Unknown table engine 'InnoDB'

Probé también cambiando ENGINE por TYPE, pero en ese caso me da este error:
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=InnoDB'

Utilizo MySQL 6.0.4-alpha
Alguna idea? Gracias