diff options
Diffstat (limited to 'doc/src/sgml/ref/create_tablespace.sgml')
-rw-r--r-- | doc/src/sgml/ref/create_tablespace.sgml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/sgml/ref/create_tablespace.sgml b/doc/src/sgml/ref/create_tablespace.sgml index 73322467c64..4e1ae9571c3 100644 --- a/doc/src/sgml/ref/create_tablespace.sgml +++ b/doc/src/sgml/ref/create_tablespace.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/create_tablespace.sgml,v 1.9 2008/11/14 10:22:46 petere Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/create_tablespace.sgml,v 1.10 2009/09/19 10:23:27 petere Exp $ PostgreSQL documentation --> @@ -21,7 +21,7 @@ PostgreSQL documentation <refsynopsisdiv> <synopsis> -CREATE TABLESPACE <replaceable class="parameter">tablespacename</replaceable> [ OWNER <replaceable class="parameter">username</replaceable> ] LOCATION '<replaceable class="parameter">directory</replaceable>' +CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable> [ OWNER <replaceable class="parameter">user_name</replaceable> ] LOCATION '<replaceable class="parameter">directory</replaceable>' </synopsis> </refsynopsisdiv> @@ -42,7 +42,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespacename</replaceable> [ <para> A user with appropriate privileges can pass - <replaceable class="parameter">tablespacename</> to + <replaceable class="parameter">tablespace_name</> to <command>CREATE DATABASE</>, <command>CREATE TABLE</>, <command>CREATE INDEX</> or <command>ADD CONSTRAINT</> to have the data files for these objects stored within the specified tablespace. @@ -54,7 +54,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespacename</replaceable> [ <variablelist> <varlistentry> - <term><replaceable class="parameter">tablespacename</replaceable></term> + <term><replaceable class="parameter">tablespace_name</replaceable></term> <listitem> <para> The name of a tablespace to be created. The name cannot @@ -65,7 +65,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespacename</replaceable> [ </varlistentry> <varlistentry> - <term><replaceable class="parameter">username</replaceable></term> + <term><replaceable class="parameter">user_name</replaceable></term> <listitem> <para> The name of the user who will own the tablespace. If omitted, |