aboutsummaryrefslogtreecommitdiff
path: root/doc/src/sgml/ref/create_tablespace.sgml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/src/sgml/ref/create_tablespace.sgml')
-rw-r--r--doc/src/sgml/ref/create_tablespace.sgml22
1 files changed, 11 insertions, 11 deletions
diff --git a/doc/src/sgml/ref/create_tablespace.sgml b/doc/src/sgml/ref/create_tablespace.sgml
index 2fed29ffaf3..4d95cac9e59 100644
--- a/doc/src/sgml/ref/create_tablespace.sgml
+++ b/doc/src/sgml/ref/create_tablespace.sgml
@@ -45,9 +45,9 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<para>
A user with appropriate privileges can pass
- <replaceable class="parameter">tablespace_name</> to
- <command>CREATE DATABASE</>, <command>CREATE TABLE</>,
- <command>CREATE INDEX</> or <command>ADD CONSTRAINT</> to have the data
+ <replaceable class="parameter">tablespace_name</replaceable> to
+ <command>CREATE DATABASE</command>, <command>CREATE TABLE</command>,
+ <command>CREATE INDEX</command> or <command>ADD CONSTRAINT</command> to have the data
files for these objects stored within the specified tablespace.
</para>
@@ -93,7 +93,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<para>
The directory that will be used for the tablespace. The directory
should be empty and must be owned by the
- <productname>PostgreSQL</> system user. The directory must be
+ <productname>PostgreSQL</productname> system user. The directory must be
specified by an absolute path name.
</para>
</listitem>
@@ -104,8 +104,8 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<listitem>
<para>
A tablespace parameter to be set or reset. Currently, the only
- available parameters are <varname>seq_page_cost</>,
- <varname>random_page_cost</> and <varname>effective_io_concurrency</>.
+ available parameters are <varname>seq_page_cost</varname>,
+ <varname>random_page_cost</varname> and <varname>effective_io_concurrency</varname>.
Setting either value for a particular tablespace will override the
planner's usual estimate of the cost of reading pages from tables in
that tablespace, as established by the configuration parameters of the
@@ -128,7 +128,7 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
</para>
<para>
- <command>CREATE TABLESPACE</> cannot be executed inside a transaction
+ <command>CREATE TABLESPACE</command> cannot be executed inside a transaction
block.
</para>
</refsect1>
@@ -137,15 +137,15 @@ CREATE TABLESPACE <replaceable class="parameter">tablespace_name</replaceable>
<title>Examples</title>
<para>
- Create a tablespace <literal>dbspace</> at <literal>/data/dbs</>:
+ Create a tablespace <literal>dbspace</literal> at <literal>/data/dbs</literal>:
<programlisting>
CREATE TABLESPACE dbspace LOCATION '/data/dbs';
</programlisting>
</para>
<para>
- Create a tablespace <literal>indexspace</> at <literal>/data/indexes</>
- owned by user <literal>genevieve</>:
+ Create a tablespace <literal>indexspace</literal> at <literal>/data/indexes</literal>
+ owned by user <literal>genevieve</literal>:
<programlisting>
CREATE TABLESPACE indexspace OWNER genevieve LOCATION '/data/indexes';
</programlisting></para>
@@ -155,7 +155,7 @@ CREATE TABLESPACE indexspace OWNER genevieve LOCATION '/data/indexes';
<title>Compatibility</title>
<para>
- <command>CREATE TABLESPACE</command> is a <productname>PostgreSQL</>
+ <command>CREATE TABLESPACE</command> is a <productname>PostgreSQL</productname>
extension.
</para>
</refsect1>