Issue the DROP SEQUENCE command to drop a sequence.
DROP SEQUENCE <seq_name>
| Input | Description |
|---|---|
| <seq_name> | The name of the sequence to be dropped. |
| Output | Description |
|---|---|
| DROP SEQUENCE | The command was successful. |
You must be the admin user, the owner of the sequence, the owner of the database or the schema where the sequence is defined, or your account must have Drop privileges on the sequence or the Sequence object class.
MYDB.SCH1(USER)=> DROP SEQUENCE sequence1;