Dropping a Sequence

You drop a sequence using DROP SEQUENCE. The following example drops my_seq:


SQL> DROP SEQUENCE my_seq;

Sequence dropped.

SQL>
Home »
Oracle »
Table » 

Sequence:
  1. Creating a Sequence
  2. Retrieving Information on Sequences
  3. Using a Sequence
  4. Populating a Primary Key Using a Sequence
  5. Modifying a Sequence
  6. Using Sequences in PL/SQL
  7. Dropping a Sequence
Related: