Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

you have been of terrific help today. I am on my way to learn PHP with MySQL and unexpectedly got stuck while dropping the database.

Basically, I was taught on how to create a root password using the "mysqladmin -u root -p password" command, this was done all through the windows command editor. Now, the next process was to display the default databases (info. schema, mysql and test) which was achieved by using "SHOW DATABASES;"

But according to the book, we had to delete the redundant test file and the following error pops up:

Error Dropping Database (Can't rmdir '.test\', errno: 17)

The command put to use was DROP DATABASE test;

I am using MYSQL and PHPMYADMIN. Any help on how to drop the file with no errors?

share|improve this question
Does the MySQL user definitely have ownership of the relevant data directory? – middaparka Jan 3 '11 at 12:41
Update. I created a new database from PHPMYADMIN and used the command in the command editor, it worked without popping the error this time. Edit: Middaparka, I really haven't touched that part yet. I don't know, by default, what are the permission given. – Sid Jan 3 '11 at 12:43
I guess the new MySQL versions really does not delete the database TEST instead try deleting the folder "TEST" in your mysql directory/bin, its just another solution for this to add on to your learning process..... – amenko Apr 9 '11 at 7:14
possible duplicate of how to drop database – woz Mar 4 at 0:28

5 Answers

up vote 34 down vote accepted

A database is represented by a directory under the data directory, and the directory is intended for storage of table data.

The DROP DATABASE statement will remove all table files and then remove the directory that represented the database. It will not, however, remove non-table files, whereby making it not possible to remove the directory.

MySQL displays an error message when it cannot remove the directory

you can really drop the database manually by removing any remaining files in the database directory and then the directory itself.

share|improve this answer
Thanks, Shakti Singh. I dropped the table of 'test' by visiting PHPMYADMIN, but I really wanted to do it through the command editor. I guess I tried deleting the same file again and again, so the error. I created a new DB and entered the DROP DATABASE command, it worked! – Sid Jan 3 '11 at 12:45
1  
Note that you can really only remove the directory yourself if the database only have MyISAM tables – nos May 30 '11 at 12:03

I ran into this same issue on a new install of mysql 5.5 on a mac. I tried to drop the test schema and got an errno 17 message. errno 17 is the error returned by some posix os functions indicating that a file exists where it should not. In the data directory, I found a strange file ".empty":

sh-3.2# ls -la data/test
total 0
drwxr-xr-x   3 _mysql  wheel  102 Apr 15 12:36 .
drwxr-xr-x  11 _mysql  wheel  374 Apr 15 12:28 ..
-rw-r--r--   1 _mysql  wheel    0 Mar 31 10:19 .empty

Once I rm'd the .empty file, the drop database command succeeded.

I don't know where the .empty file came from; as noted, this was a new mysql install. Perhaps something went wrong in the install process.

share|improve this answer
This worked for me :) Thanks! – Tek Jul 4 '11 at 21:30
2  
See MySQL Bug #62443. This is a MySQL bug introduced around 5.5.11 because of a limitation in cmake. As you said, a workaround is to remove data\test\.empty – nondescript1 Feb 1 '12 at 23:16
1  
in windows for me it was: C:\wamp\bin\mysql\mysql5.5.24\data\test\ – SinistraD Jun 27 '12 at 10:44

For phpmyadmin, go to xampp\mysql\data and simply delete the database folder. Worked for me !!

share|improve this answer

Go to the datadir for your mysql installation and rm the databases manually. It can be

/usr/local/var/mysql

Then,

rm -R <Your DB name>

To check datadir for your installation,

vim the mysql.server file and find it there.
share|improve this answer

I just ran into this problem with WAMP and the phpMyAdmin that comes with it. To remove the database and make the error go away. I went into C:\wamp\bin\mysql\mysql5.5.24\data\ and deleted the folder for the database in question.

Then I refreshed the page at phpMyAdmin, and the database was gone.

share|improve this answer

protected by Positive Nov 28 '11 at 10:16

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.