June 26th, 2009
Data Definition Language, DROP SCHEMA
Posted by
admin in
Q. Data Definition Language
Format:DROP SCHEMA schema_name {RESTRICT | CASCADE};
This command will remove the schema.
If RESTRICT is specified, the schema will not be deleted if all objects in the schema have not been dropped.
If CASCADE is specified, the schema will be deleted with all objects contained in the schema.
Example:
DROP SCHEMA CBT_INC CASCADE;
Cool post, just subscribed.