• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Schema.mysql

Xzrnoth

New Member
Joined
Dec 8, 2008
Messages
16
Reaction score
1
Hello everyone, This is the error I recieve when I try to import the file, Ive tried more then once to upload it, and delete and dl'ed a fresh one, still get this same error, any help would be appreciated.


Error

SQL query:

CREATE TABLE `server_motd` (
`id` INT NOT NULL AUTO_INCREMENT ,
`text` TEXT NOT NULL DEFAULT '',
PRIMARY KEY ( `id` )
) ENGINE = InnoDB;

MySQL said: Documentation
#1005 - Can't create table '.\otserv\server_motd.frm' (errno: 121)
 
I have the most updated version's, and still im recieveing an error, Any scripters or anyone know whats missing in that table? or what is wrong? Cause thats straight from the schema, nothing was edited.
 
Errno 121 means a duplicate key error. Probably the table already exists in the InnoDB internal data dictionary, though the .frm file for the table has been deleted. This is the most common reason for getting errno 121 in table creation
 
Back
Top