how to drop database

database-administration, mysql

Solution

It means there are files in that directory not relating to MySQL. Another issue, although I doubt it, is insufficient permissions. You may delete that directory from the filesystem.

Problem

i used the following sytanx ``` drop database filmo; ``` and got the following error: ``` ERROR 1010 (HY000): Error dropping database (can't rmdir './filmo/', errno: 17) ``` any ideas..

Original source

Related problems