<div dir="ltr">My mythtv database cannot be backed up because the backup script fails due to the above stated problem.<div><br></div><div>The backend otherwise runs fine.  I use raspberry pi's running Kodi as frontend.</div><div><br></div><div>I tried all the possible solutions I found on the web and there is no fixing the table.</div><div><br></div><div>I have a backup of the database from ~3 years ago and I managed to isolate the table in question and save it to a file via a selective mysqldump.</div><div><br></div><div>Is it safe to delete the table and then recreate it by importing from the table sql backup?</div><div><br></div><div>I am using an older version of Mythtv and my database is XmasGift.  Incidentally, how can I check the database version of the backup database? I don't want to overwrite a portion of the running database with an older version of the displayprofile table.</div><div><br></div><div>Alternatively, since I have no mythfrontends running, can I just issue a 'truncate displayprofile` command and delete the contents of the table.  I don't know if the command will execute given that the table is corrupt.</div><div><br></div><div>I would appreciate any mysql command fu's that you can recommend to fix the problem. </div><div><br></div><div>Thanks,</div><div><br></div><div>Here are the contents of the displayprofilegroups dump"</div><div><br></div><div>CODE START--------</div><div><br></div><div>CREATE TABLE `displayprofilegroups` (<br>  `name` varchar(128) NOT NULL,<br>  `hostname` varchar(64) NOT NULL,<br>  `profilegroupid` int(10) unsigned NOT NULL AUTO_INCREMENT,<br>  PRIMARY KEY (`name`,`hostname`),<br>  UNIQUE KEY `profilegroupid` (`profilegroupid`)<br>) ENGINE=Aria AUTO_INCREMENT=35 DEFAULT CHARSET=utf8 PAGE_CHECKSUM=1 TRANSACTIONAL=1;<br>/*!40101 SET character_set_client = @saved_cs_client */;<br><br>--<br>-- Dumping data for table `displayprofilegroups`<br>--<br><br>LOCK TABLES `displayprofilegroups` WRITE;<br>/*!40000 ALTER TABLE `displayprofilegroups` DISABLE KEYS */;<br>INSERT INTO `displayprofilegroups` (`name`, `hostname`, `profilegroupid`) VALUES ('OpenGL Normal','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',11),('OpenGL High Quality','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',10),('High Quality','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',4),('Normal','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',5),('Slim','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',6),('VDPAU High Quality','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',7),('VDPAU Normal','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',8),('VDPAU Slim','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',9),('OpenGL Slim','<a href="http://myxps8100.chris.net">myxps8100.chris.net</a>',12),('High Quality','cmisip-Dell-DM051',13),('Normal','cmisip-Dell-DM051',14),('Slim','cmisip-Dell-DM051',15),('VDPAU High Quality','cmisip-Dell-DM051',16),('VDPAU Normal','cmisip-Dell-DM051',17),('VDPAU Slim','cmisip-Dell-DM051',18),('OpenGL High Quality','cmisip-Dell-DM051',19),('OpenGL Normal','cmisip-Dell-DM051',20),('OpenGL Slim','cmisip-Dell-DM051',21),('High Quality','<a href="http://rasp3myth.chris.net">rasp3myth.chris.net</a>',22),('Normal','<a href="http://rasp3myth.chris.net">rasp3myth.chris.net</a>',23),('Slim','<a href="http://rasp3myth.chris.net">rasp3myth.chris.net</a>',24),('High Quality','HP8300',25),('Normal','HP8300',26),('Slim','HP8300',27),('VDPAU High Quality','HP8300',28),('VDPAU Normal','HP8300',29),('VDPAU Slim','HP8300',30),('OpenGL High Quality','HP8300',31),('OpenGL Normal','HP8300',32),('OpenGL Slim','HP8300',33),('VAAPI Normal','HP8300',34);<br>/*!40000 ALTER TABLE `displayprofilegroups` ENABLE KEYS */;<br>UNLOCK TABLES;<br><br>--<br>-- Table structure for table `displayprofiles`<br></div><div><br></div><div><br></div><div>CODE END---------</div><div><br></div><div><br></div></div>