<div dir="ltr">Thank you that worked </div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sat, May 10, 2014 at 2:38 PM, William Jacoby <span dir="ltr"><<a href="mailto:bonelifer@gmail.com" target="_blank">bonelifer@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div text="#000000" bgcolor="#FFFFFF"><div>
<div>On 5/10/2014 11:51 AM, jacek burghardt
wrote:<br>
</div>
</div><blockquote type="cite"><div>
<div dir="ltr">
<div>Can someone tell me how to renumber channels I created
source fta and scanned channels now the channels have -
infront of them so -1096 this makes impossible</div>
<div>for then to entered in mythfrontend. How I can rename all
channels and add 10000 in front so I want to rename -1096 to
11096 how I can do that in database </div>
</div>
<br>
<fieldset></fieldset>
<br>
</div><div><pre>_______________________________________________
mythtv-users mailing list
<a href="mailto:mythtv-users@mythtv.org" target="_blank">mythtv-users@mythtv.org</a>
<a href="http://www.mythtv.org/mailman/listinfo/mythtv-users" target="_blank">http://www.mythtv.org/mailman/listinfo/mythtv-users</a>
<a href="http://wiki.mythtv.org/Mailing_List_etiquette" target="_blank">http://wiki.mythtv.org/Mailing_List_etiquette</a>
MythTV Forums: <a href="https://forum.mythtv.org" target="_blank">https://forum.mythtv.org</a>
</pre>
</div></blockquote>
On my channels in the US, my higher channels all have 1008_ attached
to the front. So I've had to remove them with an SQL statement,
which took awhile since I'm not good with creating them.<br>
<br>
This should do what you want. I'd use phpmyadmin to create a backup
and test it there first:<br>
<br>
update channel set channum = replace(channum, '-', '1') where
instr(channum, '-') > 0;<br>
</div>
<br>_______________________________________________<br>
mythtv-users mailing list<br>
<a href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a><br>
<a href="http://www.mythtv.org/mailman/listinfo/mythtv-users" target="_blank">http://www.mythtv.org/mailman/listinfo/mythtv-users</a><br>
<a href="http://wiki.mythtv.org/Mailing_List_etiquette" target="_blank">http://wiki.mythtv.org/Mailing_List_etiquette</a><br>
MythTV Forums: <a href="https://forum.mythtv.org" target="_blank">https://forum.mythtv.org</a><br>
<br></blockquote></div><br></div>