home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Find it hard to do TV Mappings & HDTV Questions
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="MrMel" data-source="post: 264417" data-attributes="member: 60337"><p>This is for SQL Server.</p><p></p><p>to see what # your card has, </p><p>SELECT * FROM CARD</p><p></p><p>/* Delete the old channel maps. */</p><p>delete from channelmap</p><p>GO</p><p></p><p>/* Insert channel map for telenor, OBS!!!, CHANGE "8" to what number your telenor card has!*/</p><p>insert into channelmap(idchannel, idcard) select c1.idchannel, 8 from channel c1, tuningdetail t1 where c1.idchannel = t1.idchannel and t1.provider = 'telenor'</p><p>GO</p><p></p><p>/* Insert channel map for all others (for sample Viasat has multiple provider strings), OBS!!!, CHANGE "7" to what number your non telenor card has!*/</p><p>insert into channelmap(idchannel, idcard) select c1.idchannel, 7 from channel c1, tuningdetail t1 where c1.idchannel = t1.idchannel and t1.provider != 'telenor'</p><p>GO</p></blockquote><p></p>
[QUOTE="MrMel, post: 264417, member: 60337"] This is for SQL Server. to see what # your card has, SELECT * FROM CARD /* Delete the old channel maps. */ delete from channelmap GO /* Insert channel map for telenor, OBS!!!, CHANGE "8" to what number your telenor card has!*/ insert into channelmap(idchannel, idcard) select c1.idchannel, 8 from channel c1, tuningdetail t1 where c1.idchannel = t1.idchannel and t1.provider = 'telenor' GO /* Insert channel map for all others (for sample Viasat has multiple provider strings), OBS!!!, CHANGE "7" to what number your non telenor card has!*/ insert into channelmap(idchannel, idcard) select c1.idchannel, 7 from channel c1, tuningdetail t1 where c1.idchannel = t1.idchannel and t1.provider != 'telenor' GO [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Watch / Listen Media
Television (MyTV frontend and TV-Server)
Find it hard to do TV Mappings & HDTV Questions
Contact us
RSS
Top
Bottom