Last active
March 15, 2016 01:58
-
-
Save zarza/75b907583ecef3c46531 to your computer and use it in GitHub Desktop.
MySQL error: Table './..../postparsed' is marked as crashed and Should be repaired
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Try 'REPAIR TABLE postparsed;' first. | |
DROP TABLE `postparsed`; | |
CREATE TABLE IF NOT EXISTS `postparsed` ( | |
`Postid` int (10) unsigned NOT NULL default '0', | |
`Dateline` int (10) unsigned NOT NULL default '0', | |
`Styleid` smallint (5) unsigned NOT NULL default '0', | |
`Languageid` smallint (5) unsigned NOT NULL default '0', | |
`Hasimages` smallint (6) NOT NULL default '0', | |
`Pagetext_html` medium text, | |
PRIMARY KEY ( `postid`,` styleid`, `languageid`) | |
KEY `dateline` (` dateline`) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment