Ver Mensaje Individual
  #3 (permalink)  
Antiguo 15/09/2011, 11:08
Nerdhacker
 
Fecha de Ingreso: abril-2008
Mensajes: 3
Antigüedad: 16 años
Puntos: 0
Pregunta Respuesta: Error al importar base de datos

Gracias por responder, he cambiado la linea como me sugeriste pero me causa el mismo error, aca te adjunto el codigo.
me das algun otro Tip?

Código:
Error

consulta SQL:

-- --------------------------------------------------------
--
-- Table structure for table `jos_usergroups`
--
CREATE TABLE IF NOT EXISTS `jos_usergroups` (
`id` int( 10 ) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Clave primaria',
`parent_id` int( 10 ) unsigned NOT NULL DEFAULT '0' COMMENT 'ID Lista de referencia adyacente',
`lft` int( 11 ) NOT NULL DEFAULT '0' COMMENT 'Anidadas conjunto lft.',
`rgt` int( 11 ) NOT NULL DEFAULT '0' COMMENT 'Anidadas conjunto rgt.',
`title` varchar( 100 ) NOT NULL DEFAULT '',
PRIMARY KEY ( `id` ) ,
UNIQUE KEY `idx_usergroup_parent_title_lookup` ( `parent_id` , `title` ) ,
KEY `idx_usergroup_title_lookup` ( `title` ) ,
KEY `idx_usergroup_adjacency_lookup` ( `parent_id` ) ,
KEY USING BTREE `idx_usergroup_nested_set_lookup` (
`lft` ,
`rgt`
)
) ENGINE = MYISAM DEFAULT CHARSET = utf8 AUTO_INCREMENT =9;

MySQL ha dicho: Documentación
#1064 - Algo está equivocado en su sintax cerca '`idx_usergroup_nested_set_lookup` ( `lft` , `rgt` )
) ENGINE=My' en la linea 11