Quote:
Originally posted by VeNoM
[...] i basically need to know how i can make a mysql database fresh, ie blow out all data and tables etc... is there one command that can do this or do i need to figure out all the tables in there and drop each one of them, or is there a way to just BAM clear out the whole db so it is fresh and ready to proceed with what else needs to happen. [...]
|
I don't know anything about AGS but if you log in to mysql you can issue a
drop database_name;
or you can:
mysqladmin drop database_name
I guess it goes without saying to be sure you choose the correct db...
cheers