Ainswoth Posted November 23, 2014 Posted November 23, 2014 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 Quote
Conflicts Posted November 26, 2014 Posted November 26, 2014 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. 1 Quote
Radian Posted November 26, 2014 Posted November 26, 2014 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. Quote
Question
Ainswoth
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.
I hope someone can help me with this one
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.