Jump to content
  • 0

char server asking for what table?


Question

Posted

Getting this error and I'm not entirely sure what it means. Been trying to get this set up for a while and pretty frustrated. What is this table and where do I get it and put it? Nothing in the guides I look at lists this table? Or am I missing something else? I have no idea how to fix this. Thanks for any help.

 

[Info]: Start checking DB integrity
[SQL]: DB error - Table 'ragnarok.skill' doesn't exist
[Debug]: at C:\Users\crims\Desktop\rathena-master test\src\char\char.cpp:2332 - SELECT 1 FROM `skill` LIMIT 1;
[Fatal Error]: char : A tables is missing in sql-server, please fix it, see (sql-files main.sql for structure)
 

11 answers to this question

Recommended Posts

  • 0
Posted

A skill table is missing.

You are advised to search for it in main.sql in the sql directory and run it once.

Or you could wipe out the database completely and run the full main.sql file.

  • 0
Posted
--
-- Table structure for table `skill`
--

CREATE TABLE IF NOT EXISTS `skill` (
  `char_id` int(11) unsigned NOT NULL default '0',
  `id` smallint(11) unsigned NOT NULL default '0',
  `lv` tinyint(4) unsigned NOT NULL default '0',
  `flag` TINYINT(1) UNSIGNED NOT NULL default 0,
  PRIMARY KEY  (`char_id`,`id`)
) ENGINE=MyISAM;

you should check why its missing from your database or some failed queries execution.

  • 0
Posted

[SQL]: DB error - Table 'ragnarok.pet' doesn't exist
[Debug]: at char.cpp:2322 - SELECT 1 FROM `pet` LIMIT 1;
[Fatal Error]: char : A tables is missing in sql-server, please fix it, see (sql-files main.sql for structure)



can help?

  • 0
Posted
11 minutes ago, DevilingKing said:

[SQL]: DB error - Table 'ragnarok.pet' doesn't exist
[Debug]: at char.cpp:2322 - SELECT 1 FROM `pet` LIMIT 1;
[Fatal Error]: char : A tables is missing in sql-server, please fix it, see (sql-files main.sql for structure)



can help?

go to Rathena\sql-files folder, import mail.sql file

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...