how to drop database

前端 未结 12 2011
广开言路
广开言路 2020-12-29 05:40

i used the following sytanx

drop database filmo; 

and got the following error:

ERROR 1010 (HY000): Error dropping database         


        
12条回答
  •  醉酒成梦
    2020-12-29 06:26

    Got same error. This fixed it for me in Ubuntu 10.04:

    stop mysql

    rm -rf /var/lib/mysql/XXXXX

    start mysql

    Where XXXXX is the offending database name.

提交回复
热议问题