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

后端 未结 7 1238
臣服心动
臣服心动 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 22:43

    I realize I'm really late to the party, but when I had this issue (and ended up here) I navigated to the directory and actually found a file had inadvertently been created in the directory via INTO OUTFILE without a path, and I'd forgotten about it. MySQL seemed to have an issue because it had not created the file, and so could not delete the directory in question.

提交回复
热议问题