Drop a sequence
Although you can drop a sequence, remember that system locking occurs if you attempt to drop a sequence that is in use by a running query. In addition, if the sequence is referenced by other metadata, subsequent use of that metadata results in an error, for example if the sequence is referenced in a view definition.
To drop a sequence, use the DROP SEQUENCE statement and specify
the sequence name.
DROP SEQUENCE <sequence name>