When I first set up my zap2It channel list, I put in several channels that
I have since removed.  Problem is, these unwanted channels are
still populated in my mythtv database, so they clutter up the EPG and the
mythweb listings.&nbsp; <br>
<br>
Is there an elegant way of purging these unwanted channels?&nbsp; I
assume the channels could be deleted form the mysql database, but I
thought I'd ask if there is a better way before I go messing with the
database.&nbsp; Using the following query, I think I have identified
the rows I want to delete.&nbsp; Not sure if there are any referential
constraints to complicate the delete of rows from channel.&nbsp;
Thoughts?<br>
<br>
mysql&gt; select chanid,callsign from channel;<br>
+--------+----------+<br>
| chanid | callsign |<br>
+--------+----------+<br>
|&nbsp;&nbsp; 1004 | WRC&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>
|&nbsp;&nbsp; 1005 | WTTG&nbsp;&nbsp;&nbsp;&nbsp; |<br>
|&nbsp;&nbsp; 1006 | WPXW&nbsp;&nbsp;&nbsp; |<br>
<br>
&lt;snip&gt;<br>
<br>
|&nbsp;&nbsp; 1068 | MTV&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>
|&nbsp;&nbsp; 1069 | VH1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; |<br>
+--------+----------+<br>
45 rows in set (0.00 sec)<br>
<br>
<br>
<br>