Oracle9i SQL Reference Release 2 (9.2) Part Number A96540-02 |
|
|
View PDF |
Use the DROP
SEQUENCE
statement to remove a sequence from the database.
You can also use this statement to restart a sequence by dropping and then re-creating it. For example, if you have a sequence with a current value of 150 and you would like to restart the sequence with a value of 27, then you can drop the sequence and then re-create it with the same name and a START
WITH
value of 27.
See Also:
|
The sequence must be in your own schema or you must have the DROP
ANY
SEQUENCE
system privilege.
drop_sequence::=
Specify the schema containing the sequence. If you omit schema
, then Oracle assumes the sequence is in your own schema.
Specify the name of the sequence to be dropped.
The following statement drops the sequence customers_seq
owned by the user oe
(created in "Creating a Sequence: Example"). To issue this statement, you must either be connected as user oe
or have DROP
ANY
SEQUENCE
system privilege:
DROP SEQUENCE oe.customers_seq
;