Drop or Remove oracle schema(database)
In order to remove the existent schema in oracle, execute the sqlplus and execute the below command;
drop user user_database cascade;
The once the above command gets executed, the database created by user_database will be removed.
Should you have better suggestion, kindly leave a comment..
;)