Problem:
Drop database UV2AxCRMBI;
Executed as Single statement. Failed [3552 : HY000] Cannot DROP databases with tables, journal tables, views, macros, or zones.
Solution:
Database cannot be dropped until all object are deleted. You can delete all object by the following command before executed drop database command.
delete database UV2AxCRMBI;
drop database UV2AxCRMBI;