OSDN Git Service

FIRST REPOSITORY
[eos/hostdependOTHERS.git] / I386LINUX / util / I386LINUX / man / man7 / drop_domain.7
1 .\\" auto-generated by docbook2man-spec $Revision: 1.25 $
2 .TH "DROP DOMAIN" "7" "2003-11-02" "SQL - Language Statements" "SQL Commands"
3 .SH NAME
4 DROP DOMAIN \- remove a domain
5
6 .SH SYNOPSIS
7 .sp
8 .nf
9 DROP DOMAIN \fIname\fR [, ...]  [ CASCADE | RESTRICT ]
10 .sp
11 .fi
12 .SH "DESCRIPTION"
13 .PP
14 \fBDROP DOMAIN\fR will remove a domain. Only the
15 owner of a domain can remove it.
16 .SH "PARAMETERS"
17 .TP
18 \fB\fIname\fB\fR
19 The name (optionally schema-qualified) of an existing domain.
20 .TP
21 \fBCASCADE\fR
22 Automatically drop objects that depend on the domain (such as
23 table columns).
24 .TP
25 \fBRESTRICT\fR
26 Refuse to drop the domain if any objects depend on it. This is
27 the default.
28 .SH "EXAMPLES"
29 .PP
30 To remove the domain \fBbox\fR:
31 .sp
32 .nf
33 DROP DOMAIN box;
34 .sp
35 .fi
36 .SH "COMPATIBILITY"
37 .PP
38 This command conforms to the SQL standard.
39 .SH "SEE ALSO"
40 CREATE DOMAIN [\fBcreate_domain\fR(7)]
41