solidDB Help : solidDB reference : SQL: Statements : DROP EVENT
  
DROP EVENT
DROP EVENT [[catalog‑name.]schema‑name.]event‑name
Access requirements
Database user
Usage
Use the DROP EVENT statement to remove user-defined events from the database. System events cannot be dropped.
Examples
DROP EVENT event_test;
The following example uses the catalog, schema, and event name to specify the event to be dropped.
DROP EVENT HR_database.smith_schema.event1;
Go up to
SQL: Statements