Error in dropping a database in MySQL (can't rmdir '.\oro', errno: 41)

后端 未结 7 1264
臣服心动
臣服心动 2020-12-30 22:29

I can\'t delete a database from mysql. The error is like

ERROR 1010 (HY000): Error dropping database (can\'t rmdir \'.\\oro\', errno: 41)

I trie

7条回答
  •  天命终不由人
    2020-12-30 23:05

    Mysql generate two file for any table

    1. .frm
    2. .ibd

    check in your directory for both file must exist, if any one is missing then remove the remaining one or if you wish you can remove all the file, but be careful this my delete all your data from tables.

    This works for me, I hope it also works for you too.

提交回复
热议问题