Oracle drop a schema with all the objects (Similar to database drop in MySQL)
Here we have to drop the user who is the owner of the schema objects with CASCADE option which will result in droping user with the all objects created by that user.
SQL> Drop user username CASCADE;
Comments
Post a Comment