So how does one delete the mysql db and start over w/o wiping the system?
Solved
how does one delete the DB and setup as new?
Best answer by ImAMacGuy
I'm an idiot :) It's on my test server, and I just finished an 8hr copy of my Distribution point, only to realize I shouldnt have imported my old DB. I don't really want to wipe teh whole system and redo the whole copy again... sooooo I figure redoing the DB would be the next best thing.
-- DELETE ALL RECIPE
drop schema <database_name>;
drop user <a_user_name>;
drop user <another_user_name>;
FLUSH PRIVILEGES;
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.