<div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<br>
mysql -umythtv -p mythconverg -e 'SHOW ENGINES;'<br>
<br>
And verify there's a line with Engine 'InnoDB' with Support set to 'YES'.<br>
<br>
Then, you can restore the last backup you had from when MythWeather worked (but you'll lose all changes to settings /and/ all recordings and ... since that backup), or--my suggestion--since MythWeather has no real data (and only a bit of configuration), just recreate the MythWeather schema:<br>
<br>
cat << "EOF" | mysql -umythtv -p mythconverg<br>
DELETE TABLE IF EXISTS weathersourcesettings;<br>
DELETE TABLE IF EXISTS weatherscreens;<br>
DELETE TABLE IF EXISTS weatherdatalayout;<br>
DELETE FROM settings WHERE value = 'WeatherDBSchemaVer';<br>
EOF<br>
<br>
Then restart mythfrontend.<br>
<br>
Mike<br></blockquote></div><br>Thanks Mike and GXL,<br>That did it! Although I replaced "DELETE TABLE" with "DROP TABLE" to get it to execute.<br><br>The was the first and only upgrade difficulty I have ever had with MythTV. As always the Myth community was very helpful and my system is running normally again before any impact to the WAF.<br>
<br>-Mark<br>