Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 2.1AS

(Slurm)

drop_sequence(l)


DROP SEQUENCE

DROP SEQUENCE

NAME
SYNOPSIS
DESCRIPTION
USAGE
COMPATIBILITY

NAME

DROP SEQUENCE − Removes existing sequences from a database

SYNOPSIS

DROP SEQUENCE name [, ...]

INPUTS

name

The name of a sequence.

OUTPUTS

DROP

The message returned if the sequence is successfully dropped.

ERROR: sequence "name" does not exist

This message occurs if the specified sequence does not exist.

DESCRIPTION

DROP SEQUENCE removes sequence number generators from the data base. With the current implementation of sequences as special tables it works just like the DROP TABLE statement.

NOTES
The DROP SEQUENCE statement is a Postgres language extension.

Refer to the CREATE SEQUENCE statement for information on how to create a sequence.

USAGE

To remove sequence serial from database:

DROP SEQUENCE serial;

COMPATIBILITY

SQL92
There is no DROP SEQUENCE in SQL92.



drop_sequence(l)