Mysql recovery Times error: v_actList view does not exist; successfully restored view name is changed to lowercase.

question 1:

created a view-based view using mysql, and when you use navicate to restore sql database files, the prompt child view (the view called by the parent view) does not exist. (this is the case with more than one view)

question 2

when you restore the database, the view restore is not successful, and then the view is copied manually, and the view name is changed to lowercase.

  • View of the original database

clipboard.png

clipboard.png

< hr >

attempted solution:

if you copy the child view first, and then copy the parent view, you can write normally. Is it because of the order in which mysql views are restored?

< hr >

error message is as follows:

[Err] 1146-Table "test.v_actlist" doesn"t exist
[Err] 1146-Table" test.v_useract" doesn"t exist

< hr >
May.22,2021

Navicate will be lowercase when dealing with table or view names. If you want to keep it uppercase, you need to add quotation marks. You can use reverse quotation marks `, or double quotation marks "

.

and check my.ini or my.cnf, to see if there is no lower_case_table_names=0-like configuration.

Menu