I have a full database dump and i restored it. But in my new restored server all the views are appeared as MyISAM tables. In early times dumps were restored perfectly. can anyone help me to trigger out the issue, please?
Regards, Praveen
I have a full database dump and i restored it. But in my new restored server all the views are appeared as MyISAM tables. In early times dumps were restored perfectly. can anyone help me to trigger out the issue, please? Regards, Praveen |
|||
show 3 more comments |
In the backup script the views are first created as tables which are then dropped at the end of the script as each view is being created, so it seems that an error occurs while creating the views at the end of the script. However when a view is created there is a user who is used in the DEFINER clause of the view who may not exist in your database, e.g., DEFINER= I usually remove that clause in the backup script and it tends to work. To verify add the -v option when importing the database |
|||
|
SELECT IFNULL(engine,'View') engine,COUNT(1) table_count from information_schema.tables group by IFNULL(engine,'View');
show that output in the question. – RolandoMySQLDBA Jun 14 '12 at 14:40