Jump to content
  • 0

Errors on startup related to interreg table


Question

Posted

Server OS: CentOS 6

rAthena SVN: 17325

Ragnarok & Logs = same DB.

 

Getting errors on startup:

DB error - Table 'dbname.interreg' doesn't exist

[Debug]: at itemdb.c:1310 - SELECT `value` FROM `interreg` WHERE `varname` = unique_id

[Error]: itemdb_uid_load: Unable to fetch unique_id data

 



When I attempt to run the SQL queries for SVNs 17080, 17080_log, 17086, I get:

SQL query:


CREATE TABLE IF NOT EXISTS `interreg` (
`varname` varchar( 11 ) NOT NULL ,
`value` varchar( 20 ) NOT NULL ,
PRIMARY KEY ( `varname` )

) ENGINE = InnoDB;

1 answer to this question

Recommended Posts

Posted (edited)

try changing it into
 

CREATE TABLE IF NOT EXISTS `interreg` (
`varname` varchar(11) NOT NULL ,
`value` varchar(20) NOT NULL ,
PRIMARY KEY ( `varname` )
) ENGINE = InnoDB;

 

and you can also try just incase to change ` into ' for varchars type

Edited by anakpondok

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...