Purpose
This statement is used to delete an outline in OceanBase Database.
Syntax
DROP OUTLINE outline_name
DROP OUTLINE database_name.outline_name
Parameters
| Parameter | Description |
|---|---|
| outline_name | Specifies the name of the outline to be deleted. |
| database_name | Specifies the name of the database to which the outline belongs. Optional. |
Examples
- Delete the outline
olt_1in the current database.
obclient> DROP OUTLINE olt_1;
- Delete the outline in the specified database.
obclient> DROP OUTLINE ol_db.olt_2;
