solidDB Help : solidDB reference : SQL: Statements : DROP SEQUENCE
  
DROP SEQUENCE
DROP SEQUENCE [[catalog‑name.]schema‑name.]sequence‑name
Access requirements
Database user
Usage
Use the DROP SEQUENCE statement to remove a sequence from the database.
Example
DROP SEQUENCE SEQ1;
-- Using catalog, schema, and sequence name
DROP SEQUENCE bank_db.checking_acct_schema.account_num_seq;
Go up to
SQL: Statements