I think you're right. I seem to have three channels of everything when I should only have two since I have a digital listing and an analog listing.<br><br>mysql> SELECT channum, callsign, name FROM channel where name like "%Disney Channel%";
<br>+---------+----------+----------------+<br>| channum | callsign | name |<br>+---------+----------+----------------+<br>| 52 | DISN | Disney Channel |<br>| 52 | DISN | Disney Channel |<br>| 52 | DISN | Disney Channel |
<br>+---------+----------+----------------+<br>3 rows in set (0.00 sec)<br><br>Can't I simply delete the channels for a particular list. I noticed that a particular set of channels is prefixed with a 10 or 20 or 30 in chanid? But which one.
<br><br><br>| chanid | channum | sourceid | callsign | name | icon | finetune | videofilters | xmltvid | contrast | brightness | colour | recpriority | hue | freqid | tvformat | commfree | visible | outputfilters | useonairguide | mplexid | serviceid | atscsrcid | tmoffset | atsc_major_chan | atsc_minor_chan |
<br>+--------+---------+----------+----------+----------------+------+----------+--------------+---------+----------+------------+--------+-------------+-------+--------+----------+----------+---------+---------------+---------------+---------+-----------+-----------+----------+-----------------+-----------------+
<br>| 1052 | 52 | 1 | DISN | Disney Channel | | NULL | | 10171 | 32768 | 32768 | 32768 | 0 | 32768 | 52 | Default | 0 | 1 | | 0 | 32767 | 0 | 13312 | 0 | 52 | 0 |
<br>| 2052 | 52 | 2 | DISN | Disney Channel | | NULL | | 10171 | 32768 | 32768 | 32768 | 0 | 32768 | 52 | Default | 0 | 1 | | 0 | 32767 | 0 | 13312 | 0 | 52 | 0 |
<br>| 3052 | 52 | 3 | DISN | Disney Channel | | NULL | | 10171 | 32768 | 32768 | 32768 | 0 | 32768 | 52 | Default | 0 | 1 | | 0 | 32767 | 0 | 13312 | 0 | 52 | 0 |
<br>+--------+---------+----------+----------+----------------+------+----------+--------------+---------+----------+------------+--------+-------------+-------+--------+------<br><br><br>Thanks<br><br><br><br><div><span class="gmail_quote">
On 4/15/07, <b class="gmail_sendername">Michael T. Dean</b> <<a href="mailto:mtdean@thirdcontact.com">mtdean@thirdcontact.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On 04/15/2007 01:34 PM, Chris Isip wrote:<br>> Is there an sql query to list these phantom channels? I use zap2it for<br>> listings by the way.<br><br>Easiest approach is probably:<br><br>SELECT COUNT(*) FROM channel;
<br><br>and compare it to the number of channels you think you have. You could<br>also just do a "SELECT channum, callsign, name FROM channel;" and look<br>it over.<br><br>The best way to verify what you have (for video sources, input
<br>connections, and channels) is correct is<br><a href="http://www.gossamer-threads.com/lists/mythtv/users/261405#261405">http://www.gossamer-threads.com/lists/mythtv/users/261405#261405</a> (only<br>the "Delete All" part if you're using analog--and don't do a channel
<br>scan for analog--use "Fetch channels from listings provider" or whatever).<br><br>Mike<br>_______________________________________________<br>mythtv-users mailing list<br><a href="mailto:mythtv-users@mythtv.org">
mythtv-users@mythtv.org</a><br><a href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a><br></blockquote></div><br>