Jump to content
  • 0

SQL DB Error


Ainswoth

Question


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  11
  • Reputation:   1
  • Joined:  02/11/14
  • Last Seen:  

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

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  14
  • Topics Per Day:  0.00
  • Content Count:  317
  • Reputation:   63
  • Joined:  11/13/11
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  162
  • Topics Per Day:  0.05
  • Content Count:  1546
  • Reputation:   192
  • Joined:  07/23/14
  • Last Seen:  

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.

Link to comment
Share on other sites

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.

×
×
  • Create New...