我正在尝试恢复客户的数据库,因为他们的托管问题导致他们丢失所有信息。现在,我去 phpmyadmin 并尝试导入 sql 文件,但出现以下错误:
CREATE TABLE IF NOT EXISTS `actions` (
`aid` VARCHAR( 255 ) NOT NULL DEFAULT '0' COMMENT 'Primary Key: Unique actions ID.',
`type` VARCHAR( 32 ) NOT NULL DEFAULT '' COMMENT 'The object that that action acts on (node, user, comment, system or custom types.)',
`callback` VARCHAR( 255 ) NOT NULL DEFAULT '' COMMENT 'The callback function that executes when the action runs.',
`parameters` LONGBLOB NOT NULL COMMENT 'Parameters to be passed to the callback function.',
`label` VARCHAR( 255 ) NOT NULL DEFAULT '0' COMMENT 'Label of the action.',
PRIMARY KEY ( `aid` )
) ENGINE = INNODB DEFAULT CHARSET = utf8 COMMENT = 'Stores action information.';
MySQL said: Documentation
#1005 - Can't create table './domain/actions.frm' (errno: 121)
我已经读过它与重复名称有关,但由于这个数据库是空的,我看不到任何东西如何被复制,或者如果有的话如何删除它。我怎样才能解决这个问题?
提前致谢。