The local drive C and drive D both have an xampp. I copied the data from xamppmysqldata under drive C to the same location as the xampp on drive D. An error occurred while accessing the database table! Unable to save recently used tables! 1932 the local drive C and drive D both have an xampp. I copied the data from xampp/mysql/data under drive C to the same location of drive D xampp. An error occurred while accessing the database table!
Unable to save recently used tables!
1932-Table 'phpmyadmin. pma _ recent 'doesn' t exist in engine
Reply content:
The local drive C and drive D both have an xampp. I copied the data from xampp/mysql/data under drive C to the same location of drive D xampp. An error occurred while accessing the database table!
Unable to save recently used tables!
1932-Table 'phpmyadmin. pma _ recent 'doesn' t exist in engine
Your data table engine isMyISAM
OrInnoDB
?
MyISAM
The suffix of the data table is. Frm
(Table structure ),. Myd
(Data) and. Myi
(Index ),Its indexes and data are separated and can be directly copied;
InnoDB
The suffix of the data table is. Frm
(Table structure) and. Ibd
(Data ),Both indexes and data are in the same file.Ibdata *
And cannot be copied directly. you need to export the file before importing it.
After the copy, do not forget to restart the database service.
For more information about MyISAM and InnoDB data files, see MySQL data file description.
Direct copy is not acceptable. you must first export the database and then import it.