Jump to content
  • 0

SQL DB Error


Question

Posted

I tried fixing this error for quite some time now. And still didnt seen any solution to fix this. Please help me. The images are attached below.

 

I also tried using this code inserting it to my query but still no luck.

 

 CREATE TABLE IF NOT EXISTS `ragsrvinfo` (
`index` int(11) NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`exp` int(11) unsigned NOT NULL default '0',
`jexp` int(11) unsigned NOT NULL default '0',
`drop` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM; 

 

I hope someone can help me with this one :(

post-24020-0-47899100-1416736386_thumb.png

post-24020-0-39412100-1416736390_thumb.png

2 answers to this question

Recommended Posts

Posted

I don't know how you ended up with a corrupted ragsrvinfo table, but try running this query;

DROP TABLE IF EXISTS `ragsrvinfo`;
CREATE TABLE `ragsrvinfo` (
  `index` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `exp` int(11) unsigned NOT NULL default '0',
  `jexp` int(11) unsigned NOT NULL default '0',
  `drop` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM;

This will, drop your old ragsrvinfo table and re-create a new one.

  • Upvote 1
Posted

I tried fixing this error for quite some time now. And still didnt seen any solution to fix this. Please help me. The images are attached below.

 

I also tried using this code inserting it to my query but still no luck.

 CREATE TABLE IF NOT EXISTS `ragsrvinfo` (
`index` int(11) NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`exp` int(11) unsigned NOT NULL default '0',
`jexp` int(11) unsigned NOT NULL default '0',
`drop` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM; 

I hope someone can help me with this one :(

 

go to your mysql then look for ragsrvinfo click it and look for the option " repair table " this happens to me last time reason was the host didn't update my payment and my server is down.

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