File tree Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Expand file tree Collapse file tree 4 files changed +10
-11
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.14 2005/01/04 00:39:53 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/alter_database.sgml,v 1.15 2005/01/05 14:22:39 petere Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -25,7 +25,7 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RESET <replacea
25
25
26
26
ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>newname</replaceable>
27
27
28
- ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> OWNER TO <replaceable>newowner </replaceable>
28
+ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> OWNER TO <replaceable>new_owner </replaceable>
29
29
</synopsis>
30
30
</refsynopsisdiv>
31
31
@@ -110,7 +110,7 @@ ALTER DATABASE <replaceable class="PARAMETER">name</replaceable> OWNER TO <repla
110
110
</varlistentry>
111
111
112
112
<varlistentry>
113
- <term><replaceable class="parameter">newowner </replaceable></term>
113
+ <term><replaceable class="parameter">new_owner </replaceable></term>
114
114
<listitem>
115
115
<para>
116
116
The new owner of the database.
Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.35 2005/01/04 00:39:53 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/alter_user.sgml,v 1.36 2005/01/05 14:22:39 petere Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -24,9 +24,9 @@ ALTER USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replace
24
24
25
25
where <replaceable class="PARAMETER">option</replaceable> can be:
26
26
27
- CREATEDB | NOCREATEDB
27
+ [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>'
28
+ | CREATEDB | NOCREATEDB
28
29
| CREATEUSER | NOCREATEUSER
29
- | [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>'
30
30
| VALID UNTIL '<replaceable class="PARAMETER">abstime</replaceable>'
31
31
32
32
ALTER USER <replaceable class="PARAMETER">name</replaceable> RENAME TO <replaceable>newname</replaceable>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.27 2005/01/04 00:39:53 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/create_table_as.sgml,v 1.28 2005/01/05 14:22:39 petere Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -20,8 +20,7 @@ PostgreSQL documentation
20
20
21
21
<refsynopsisdiv>
22
22
<synopsis>
23
- CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable>table_name</replaceable>
24
- [ (<replaceable>column_name</replaceable> [, ...] ) ] [ [ WITH | WITHOUT ] OIDS ]
23
+ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable>table_name</replaceable> [ (<replaceable>column_name</replaceable> [, ...] ) ] [ [ WITH | WITHOUT ] OIDS ]
25
24
AS <replaceable>query</replaceable>
26
25
</synopsis>
27
26
</refsynopsisdiv>
Original file line number Diff line number Diff line change 1
1
<!--
2
- $PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.34 2005/01/04 00:39:53 tgl Exp $
2
+ $PostgreSQL: pgsql/doc/src/sgml/ref/create_user.sgml,v 1.35 2005/01/05 14:22:39 petere Exp $
3
3
PostgreSQL documentation
4
4
-->
5
5
@@ -25,10 +25,10 @@ CREATE USER <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replac
25
25
where <replaceable class="PARAMETER">option</replaceable> can be:
26
26
27
27
SYSID <replaceable class="PARAMETER">uid</replaceable>
28
+ | [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>'
28
29
| CREATEDB | NOCREATEDB
29
30
| CREATEUSER | NOCREATEUSER
30
31
| IN GROUP <replaceable class="PARAMETER">groupname</replaceable> [, ...]
31
- | [ ENCRYPTED | UNENCRYPTED ] PASSWORD '<replaceable class="PARAMETER">password</replaceable>'
32
32
| VALID UNTIL '<replaceable class="PARAMETER">abstime</replaceable>'
33
33
</synopsis>
34
34
</refsynopsisdiv>
You can’t perform that action at this time.
0 commit comments