We have a MySQL database that was restarted a few hours ago
When it restarted, the views were missing. The tables all seem intact, and a check on the mysql tables seems all good.
Any ideas what could have happened?
|
We have a MySQL database that was restarted a few hours ago When it restarted, the views were missing. The tables all seem intact, and a check on the mysql tables seems all good. Any ideas what could have happened? |
|||
|
A backup was restored to the server sans views. Simple really. |
|||||||||
|
SHOW FULL TABLESonly shows base tables, but not views? – Shlomi Noach Aug 16 '12 at 14:41SELECT COUNT(1) FROM information_schema.views;andSELECT COUNT(1) FROM information_schema.tables WHERE ENGINE IS NULL;. Do you get zeros ??? – RolandoMySQLDBA Aug 16 '12 at 20:28