Entering content frame

DROP SEQUENCE statement 

A DROP SEQUENCE statement drops a number generator (sequence).

Syntax

<drop_sequence_statement> ::= DROP SEQUENCE [<owner>.]<sequence_name>

owner, sequence_name

Explanation

The current user must be the owner. The sequence name must identify a sequence of the current user.

The metadata of the sequence is removed from the catalog.

Leaving content frame