Sophie

Sophie

distrib > Mandriva > current > i586 > media > main-updates > by-pkgid > fc62ce67f262cdcd253dc7f849ce3223 > files > 827

postgresql8.4-docs-8.4.12-0.1mdv2010.2.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML
><HEAD
><TITLE
>CREATE TEXT SEARCH CONFIGURATION</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.79"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 8.4.12 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="SQL Commands"
HREF="sql-commands.html"><LINK
REL="PREVIOUS"
TITLE="CREATE TABLESPACE"
HREF="sql-createtablespace.html"><LINK
REL="NEXT"
TITLE="CREATE TEXT SEARCH DICTIONARY"
HREF="sql-createtsdictionary.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
HTTP-EQUIV="Content-Type"
CONTENT="text/html; charset=ISO-8859-1"><META
NAME="creation"
CONTENT="2012-05-31T23:30:11"></HEAD
><BODY
CLASS="REFENTRY"
><DIV
CLASS="NAVHEADER"
><TABLE
SUMMARY="Header navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TH
COLSPAN="5"
ALIGN="center"
VALIGN="bottom"
>PostgreSQL 8.4.12 Documentation</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-createtablespace.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-createtablespace.html"
>Fast Backward</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-createtsdictionary.html"
>Fast Forward</A
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-createtsdictionary.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="SQL-CREATETSCONFIG"
></A
>CREATE TEXT SEARCH CONFIGURATION</H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN59666"
></A
><H2
>Name</H2
>CREATE TEXT SEARCH CONFIGURATION&nbsp;--&nbsp;define a new text search configuration</DIV
><A
NAME="AEN59669"
></A
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN59671"
></A
><H2
>Synopsis</H2
><PRE
CLASS="SYNOPSIS"
>CREATE TEXT SEARCH CONFIGURATION <TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
> (
    PARSER = <TT
CLASS="REPLACEABLE"
><I
>parser_name</I
></TT
> |
    COPY = <TT
CLASS="REPLACEABLE"
><I
>source_config</I
></TT
>
)</PRE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN59676"
></A
><H2
>Description</H2
><P
>   <TT
CLASS="COMMAND"
>CREATE TEXT SEARCH CONFIGURATION</TT
> creates a new text
   search configuration.  A text search configuration specifies a text
   search parser that can divide a string into tokens, plus dictionaries
   that can be used to determine which tokens are of interest for searching.
  </P
><P
>   If only the parser is specified, then the new text search configuration
   initially has no mappings from token types to dictionaries, and therefore
   will ignore all words.  Subsequent <TT
CLASS="COMMAND"
>ALTER TEXT SEARCH
   CONFIGURATION</TT
> commands must be used to create mappings to
   make the configuration useful.  Alternatively, an existing text search
   configuration can be copied.
  </P
><P
>   If a schema name is given then the text search configuration is created in
   the specified schema.  Otherwise it is created in the current schema.
  </P
><P
>   The user who defines a text search configuration becomes its owner.
  </P
><P
>   Refer to <A
HREF="textsearch.html"
>Chapter 12</A
> for further information.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN59686"
></A
><H2
>Parameters</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="REPLACEABLE"
><I
>name</I
></TT
></DT
><DD
><P
>      The name of the text search configuration to be created.  The name can be
      schema-qualified.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>parser_name</I
></TT
></DT
><DD
><P
>      The name of the text search parser to use for this configuration.
     </P
></DD
><DT
><TT
CLASS="REPLACEABLE"
><I
>source_config</I
></TT
></DT
><DD
><P
>      The name of an existing text search configuration to copy.
     </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN59704"
></A
><H2
>Notes</H2
><P
>   The <TT
CLASS="LITERAL"
>PARSER</TT
> and <TT
CLASS="LITERAL"
>COPY</TT
> options are mutually
   exclusive, because when an existing configuration is copied, its
   parser selection is copied too.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN59709"
></A
><H2
>Compatibility</H2
><P
>   There is no <TT
CLASS="COMMAND"
>CREATE TEXT SEARCH CONFIGURATION</TT
> statement
   in the SQL standard.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN59713"
></A
><H2
>See Also</H2
><A
HREF="sql-altertsconfig.html"
><I
>ALTER TEXT SEARCH CONFIGURATION</I
></A
>, <A
HREF="sql-droptsconfig.html"
><I
>DROP TEXT SEARCH CONFIGURATION</I
></A
></DIV
><DIV
CLASS="NAVFOOTER"
><HR
ALIGN="LEFT"
WIDTH="100%"><TABLE
SUMMARY="Footer navigation table"
WIDTH="100%"
BORDER="0"
CELLPADDING="0"
CELLSPACING="0"
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
><A
HREF="sql-createtablespace.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="index.html"
ACCESSKEY="H"
>Home</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><A
HREF="sql-createtsdictionary.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>CREATE TABLESPACE</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="sql-commands.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
>CREATE TEXT SEARCH DICTIONARY</TD
></TR
></TABLE
></DIV
></BODY
></HTML
>