DROP SCHEMA

Drop a schema. This drops all the tables and indexes that are part of this schema.

Syntax

DROP SCHEMA pathToSchema

Parameters

pathToSchema

The fully-qualified path of the schema in the database

Example

-- drop schema 'DEMO_SCHEMA' in '/FRL/DEMO_DB'
DROP SCHEMA '/FRL/DEMO_DB/DEMO_SCHEMA'