Sophie

Sophie

distrib > Mandriva > 10.0 > i586 > by-pkgid > db7d48fed1469a51f3fb965d5b5b2ac1 > files > 26

postgresql-docs-7.4.1-2.5.100mdk.i586.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML
><HEAD
><TITLE
>psql</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.7"><LINK
REV="MADE"
HREF="mailto:pgsql-docs@postgresql.org"><LINK
REL="HOME"
TITLE="PostgreSQL 7.4.1 Documentation"
HREF="index.html"><LINK
REL="UP"
TITLE="PostgreSQL Client Applications"
HREF="reference-client.html"><LINK
REL="PREVIOUS"
TITLE="pgtksh"
HREF="app-pgtksh.html"><LINK
REL="NEXT"
TITLE="vacuumdb"
HREF="app-vacuumdb.html"><LINK
REL="STYLESHEET"
TYPE="text/css"
HREF="stylesheet.css"><META
NAME="creation"
CONTENT="2003-12-22T03:48:47"></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 7.4.1 Documentation</TH
></TR
><TR
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="app-pgtksh.html"
ACCESSKEY="P"
>Prev</A
></TD
><TD
WIDTH="10%"
ALIGN="left"
VALIGN="top"
><A
HREF="app-pgtksh.html"
>Fast Backward</A
></TD
><TD
WIDTH="60%"
ALIGN="center"
VALIGN="bottom"
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="app-vacuumdb.html"
>Fast Forward</A
></TD
><TD
WIDTH="10%"
ALIGN="right"
VALIGN="top"
><A
HREF="app-vacuumdb.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
></TABLE
><HR
ALIGN="LEFT"
WIDTH="100%"></DIV
><H1
><A
NAME="APP-PSQL"
></A
><SPAN
CLASS="APPLICATION"
>psql</SPAN
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN45493"
></A
><H2
>Name</H2
><SPAN
CLASS="APPLICATION"
>psql</SPAN
>&nbsp;--&nbsp;      <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> interactive terminal
    </DIV
><A
NAME="AEN45498"
></A
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN45500"
></A
><H2
>Synopsis</H2
><P
><TT
CLASS="COMMAND"
>psql</TT
> [<VAR
CLASS="REPLACEABLE"
>option</VAR
>...] [<VAR
CLASS="REPLACEABLE"
>dbname</VAR
>
    [<VAR
CLASS="REPLACEABLE"
>username</VAR
>]]</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN45509"
></A
><H2
>Description</H2
><P
>     <SPAN
CLASS="APPLICATION"
>psql</SPAN
> is a terminal-based front-end to
     <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>. It enables you to type in
     queries interactively, issue them to
     <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>, and see the query results.
     Alternatively, input can be from a file. In addition, it provides a
     number of meta-commands and various shell-like features to
     facilitate writing scripts and automating a wide variety of tasks.
    </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="R1-APP-PSQL-3"
></A
><H2
>Options</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><VAR
CLASS="OPTION"
>-a</VAR
><BR><VAR
CLASS="OPTION"
>--echo-all</VAR
></DT
><DD
><P
>      Print all the lines to the screen as they are read. This is more
      useful for script processing rather than interactive mode. This is
      equivalent to setting the variable <VAR
CLASS="VARNAME"
>ECHO</VAR
> to
      <TT
CLASS="LITERAL"
>all</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-A</VAR
><BR><VAR
CLASS="OPTION"
>--no-align</VAR
></DT
><DD
><P
>      Switches to unaligned output mode. (The default output mode is
      otherwise aligned.)
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-c <VAR
CLASS="REPLACEABLE"
>command</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--command <VAR
CLASS="REPLACEABLE"
>command</VAR
></VAR
></DT
><DD
><P
>      Specifies that <SPAN
CLASS="APPLICATION"
>psql</SPAN
> is to execute one
      command string, <VAR
CLASS="REPLACEABLE"
>command</VAR
>,
      and then exit. This is useful in shell scripts.
      </P
><P
>      <VAR
CLASS="REPLACEABLE"
>command</VAR
> must be either
      a command string that is completely parsable by the server (i.e.,
      it contains no <SPAN
CLASS="APPLICATION"
>psql</SPAN
> specific features),
      or it is a single backslash command. Thus you cannot mix
      <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> and <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
      meta-commands. To achieve that, you could pipe the string into
      <SPAN
CLASS="APPLICATION"
>psql</SPAN
>, like this: <TT
CLASS="LITERAL"
>echo "\x \\
      select * from foo;" | psql</TT
>.
      </P
><P
>       If the command string contains multiple SQL commands, they are
       processed in a single transaction, unless there are explicit
       BEGIN/COMMIT commands included in the string to divide it into
       multiple transactions.  This is different from the behavior when
       the same string is fed to <SPAN
CLASS="APPLICATION"
>psql</SPAN
>'s standard input.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-d <VAR
CLASS="REPLACEABLE"
>dbname</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--dbname <VAR
CLASS="REPLACEABLE"
>dbname</VAR
></VAR
></DT
><DD
><P
>      Specifies the name of the database to connect to. This is
      equivalent to specifying <VAR
CLASS="REPLACEABLE"
>dbname</VAR
> as the first non-option
      argument on the command line.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-e</VAR
><BR><VAR
CLASS="OPTION"
>--echo-queries</VAR
></DT
><DD
><P
>      Show all commands that are sent to the server. This is equivalent
      to setting the variable <VAR
CLASS="VARNAME"
>ECHO</VAR
> to
      <TT
CLASS="LITERAL"
>queries</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-E</VAR
><BR><VAR
CLASS="OPTION"
>--echo-hidden</VAR
></DT
><DD
><P
>      Echo the actual queries generated by <TT
CLASS="COMMAND"
>\d</TT
> and other backslash
      commands. You can use this if you wish to include similar
      functionality into your own programs. This is equivalent to
      setting the variable <VAR
CLASS="VARNAME"
>ECHO_HIDDEN</VAR
> from within
      <SPAN
CLASS="APPLICATION"
>psql</SPAN
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-f <VAR
CLASS="REPLACEABLE"
>filename</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--file <VAR
CLASS="REPLACEABLE"
>filename</VAR
></VAR
></DT
><DD
><P
>      Use the file <VAR
CLASS="REPLACEABLE"
>filename</VAR
>
      as the source of commands instead of reading commands interactively.
      After the file is processed, <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
      terminates. This is in many ways equivalent to the internal
      command <TT
CLASS="COMMAND"
>\i</TT
>.
      </P
><P
>       If <VAR
CLASS="REPLACEABLE"
>filename</VAR
> is <TT
CLASS="LITERAL"
>-</TT
>
       (hyphen), then standard input is read.
      </P
><P
>      Using this option is subtly different from writing <TT
CLASS="LITERAL"
>psql
      &lt; <VAR
CLASS="REPLACEABLE"
>filename</VAR
></TT
>. In general,
      both will do what you expect, but using <TT
CLASS="LITERAL"
>-f</TT
>
      enables some nice features such as error messages with line
      numbers. There is also a slight chance that using this option will
      reduce the start-up overhead. On the other hand, the variant using
      the shell's input redirection is (in theory) guaranteed to yield
      exactly the same output that you would have gotten had you entered
      everything by hand.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-F <VAR
CLASS="REPLACEABLE"
>separator</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--field-separator <VAR
CLASS="REPLACEABLE"
>separator</VAR
></VAR
></DT
><DD
><P
>      Use <VAR
CLASS="REPLACEABLE"
>separator</VAR
> as the
      field separator. This is equivalent to <TT
CLASS="COMMAND"
>\pset
      fieldsep</TT
> or <TT
CLASS="COMMAND"
>\f</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-h <VAR
CLASS="REPLACEABLE"
>hostname</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--host <VAR
CLASS="REPLACEABLE"
>hostname</VAR
></VAR
></DT
><DD
><P
>      Specifies the host name of the machine on which the
      server is running. If the value begins
      with a slash, it is used as the directory for the Unix-domain
      socket.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-H</VAR
><BR><VAR
CLASS="OPTION"
>--html</VAR
></DT
><DD
><P
>      Turn on <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> tabular output. This is
      equivalent to <TT
CLASS="LITERAL"
>\pset format html</TT
> or the
      <TT
CLASS="COMMAND"
>\H</TT
> command.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-l</VAR
><BR><VAR
CLASS="OPTION"
>--list</VAR
></DT
><DD
><P
>      List all available databases, then exits. Other non-connection
      options are ignored. This is similar to the internal command
      <TT
CLASS="COMMAND"
>\list</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-o <VAR
CLASS="REPLACEABLE"
>filename</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--output <VAR
CLASS="REPLACEABLE"
>filename</VAR
></VAR
></DT
><DD
><P
>      Put all query output into file <VAR
CLASS="REPLACEABLE"
>filename</VAR
>. This is equivalent to
      the command <TT
CLASS="COMMAND"
>\o</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-p <VAR
CLASS="REPLACEABLE"
>port</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--port <VAR
CLASS="REPLACEABLE"
>port</VAR
></VAR
></DT
><DD
><P
>      Specifies the TCP port or the local Unix domain
      socket file extension on which the server is listening for
      connections. Defaults to the value of the <TT
CLASS="ENVAR"
>PGPORT</TT
>
      environment variable or, if not set, to the port specified at
      compile time, usually 5432.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-P <VAR
CLASS="REPLACEABLE"
>assignment</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--pset <VAR
CLASS="REPLACEABLE"
>assignment</VAR
></VAR
></DT
><DD
><P
>      Allows you to specify printing options in the style of
      <TT
CLASS="COMMAND"
>\pset</TT
> on the command line. Note that here you
      have to separate name and value with an equal sign instead of a
      space. Thus to set the output format to LaTeX, you could write
      <TT
CLASS="LITERAL"
>-P format=latex</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-q</VAR
><BR><VAR
CLASS="OPTION"
>--quiet</VAR
></DT
><DD
><P
>      Specifies that <SPAN
CLASS="APPLICATION"
>psql</SPAN
> should do its work
      quietly. By default, it prints welcome messages and various
      informational output. If this option is used, none of this
      happens. This is useful with the <VAR
CLASS="OPTION"
>-c</VAR
> option.
      Within <SPAN
CLASS="APPLICATION"
>psql</SPAN
> you can also set the
      <VAR
CLASS="VARNAME"
>QUIET</VAR
> variable to achieve the same effect.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-R <VAR
CLASS="REPLACEABLE"
>separator</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--record-separator <VAR
CLASS="REPLACEABLE"
>separator</VAR
></VAR
></DT
><DD
><P
>      Use <VAR
CLASS="REPLACEABLE"
>separator</VAR
> as the
      record separator. This is equivalent to the <TT
CLASS="COMMAND"
>\pset
      recordsep</TT
> command.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-s</VAR
><BR><VAR
CLASS="OPTION"
>--single-step</VAR
></DT
><DD
><P
>      Run in single-step mode. That means the user is prompted before
      each command is sent to the server, with the option to cancel
      execution as well. Use this to debug scripts.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-S</VAR
><BR><VAR
CLASS="OPTION"
>--single-line</VAR
></DT
><DD
><P
>      Runs in single-line mode where a newline terminates an SQL command, as a
      semicolon does.
      </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>      This mode is provided for those who insist on it, but you are not
      necessarily encouraged to use it. In particular, if you mix
      <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> and meta-commands on a line the order of
      execution might not always be clear to the inexperienced user.
      </P
></BLOCKQUOTE
></DIV
></DD
><DT
><VAR
CLASS="OPTION"
>-t</VAR
><BR><VAR
CLASS="OPTION"
>--tuples-only</VAR
></DT
><DD
><P
>      Turn off printing of column names and result row count footers,
      etc. It is completely equivalent to the <TT
CLASS="COMMAND"
>\t</TT
>
      meta-command.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-T <VAR
CLASS="REPLACEABLE"
>table_options</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--table-attr <VAR
CLASS="REPLACEABLE"
>table_options</VAR
></VAR
></DT
><DD
><P
>      Allows you to specify options to be placed within the
      <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> <CODE
CLASS="SGMLTAG"
>table</CODE
> tag. See
      <TT
CLASS="COMMAND"
>\pset</TT
> for details.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-u</VAR
></DT
><DD
><P
>      Makes <SPAN
CLASS="APPLICATION"
>psql</SPAN
> prompt for the user name and
      password before connecting to the database.
      </P
><P
>      This option is deprecated, as it is conceptually flawed.
      (Prompting for a non-default user name and prompting for a
      password because the server requires it are really two different
      things.) You are encouraged to look at the <VAR
CLASS="OPTION"
>-U</VAR
> and
      <VAR
CLASS="OPTION"
>-W</VAR
> options instead.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-U <VAR
CLASS="REPLACEABLE"
>username</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--username <VAR
CLASS="REPLACEABLE"
>username</VAR
></VAR
></DT
><DD
><P
>      Connect to the database as the user <VAR
CLASS="REPLACEABLE"
>username</VAR
> instead of the default.
      (You must have permission to do so, of course.)
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-v <VAR
CLASS="REPLACEABLE"
>assignment</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--set <VAR
CLASS="REPLACEABLE"
>assignment</VAR
></VAR
><BR><VAR
CLASS="OPTION"
>--variable <VAR
CLASS="REPLACEABLE"
>assignment</VAR
></VAR
></DT
><DD
><P
>      Perform a variable assignment, like the <TT
CLASS="COMMAND"
>\set</TT
>
      internal command. Note that you must separate name and value, if
      any, by an equal sign on the command line. To unset a variable,
      leave off the equal sign. To just set a variable without a value,
      use the equal sign but leave off the value. These assignments are
      done during a very early stage of start-up, so variables reserved
      for internal purposes might get overwritten later.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-V</VAR
><BR><VAR
CLASS="OPTION"
>--version</VAR
></DT
><DD
><P
>      Show the <SPAN
CLASS="APPLICATION"
>psql</SPAN
> version.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-W</VAR
><BR><VAR
CLASS="OPTION"
>--password</VAR
></DT
><DD
><P
>      Requests that <SPAN
CLASS="APPLICATION"
>psql</SPAN
> should prompt for a
      password before connecting to a database. This will remain set for
      the entire session, even if you change the database connection
      with the meta-command <TT
CLASS="COMMAND"
>\connect</TT
>.
      </P
><P
>      In the current version, <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
      automatically issues a password prompt whenever the server
      requests password authentication. Because this is currently based
      on a hack, the automatic recognition might mysteriously fail,
      hence this option to force a prompt. If no password prompt is
      issued and the server requires password authentication the
      connection attempt will fail.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-x</VAR
><BR><VAR
CLASS="OPTION"
>--expanded</VAR
></DT
><DD
><P
>      Turn on the extended table formatting mode. This is equivalent to the
      command <TT
CLASS="COMMAND"
>\x</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-X,</VAR
><BR><VAR
CLASS="OPTION"
>--no-psqlrc</VAR
></DT
><DD
><P
>      Do not read the start-up file <TT
CLASS="FILENAME"
>~/.psqlrc</TT
>.
      </P
></DD
><DT
><VAR
CLASS="OPTION"
>-?</VAR
><BR><VAR
CLASS="OPTION"
>--help</VAR
></DT
><DD
><P
>      Show help about <SPAN
CLASS="APPLICATION"
>psql</SPAN
> command line
      arguments.
      </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN45807"
></A
><H2
>Exit Status</H2
><P
>   <SPAN
CLASS="APPLICATION"
>psql</SPAN
> returns 0 to the shell if it
   finished normally, 1 if a fatal error of its own (out of memory,
   file not found) occurs, 2 if the connection to the server went bad
   and the session was not interactive, and 3 if an error occurred in a
   script and the variable <VAR
CLASS="VARNAME"
>ON_ERROR_STOP</VAR
> was set.
  </P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN45812"
></A
><H2
>Usage</H2
><DIV
CLASS="REFSECT2"
><A
NAME="R2-APP-PSQL-CONNECTING"
></A
><H3
>Connecting To A Database</H3
><P
>    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> is a regular
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> client application. In order
    to connect to a database you need to know the name of your target
    database, the host name and port number of the server and what user
    name you want to connect as. <SPAN
CLASS="APPLICATION"
>psql</SPAN
> can be
    told about those parameters via command line options, namely
    <VAR
CLASS="OPTION"
>-d</VAR
>, <VAR
CLASS="OPTION"
>-h</VAR
>, <VAR
CLASS="OPTION"
>-p</VAR
>, and
    <VAR
CLASS="OPTION"
>-U</VAR
> respectively. If an argument is found that does
    not belong to any option it will be interpreted as the database name
    (or the user name, if the database name is also given). Not all
    these options are required, defaults do apply. If you omit the host
    name, <SPAN
CLASS="APPLICATION"
>psql</SPAN
> will connect via a Unix domain socket to a server on the
    local host. The default port number is compile-time determined.
    Since the database server uses the same default, you will not have
    to specify the port in most cases. The default user name is your
    Unix user name, as is the default database name. Note that you can't
    just connect to any database under any user name. Your database
    administrator should have informed you about your access rights. To
    save you some typing you can also set the environment variables
    <TT
CLASS="ENVAR"
>PGDATABASE</TT
>, <TT
CLASS="ENVAR"
>PGHOST</TT
>,
    <TT
CLASS="ENVAR"
>PGPORT</TT
> and <TT
CLASS="ENVAR"
>PGUSER</TT
> to appropriate
    values.
    </P
><P
>    If the connection could not be made for any reason (e.g., insufficient
    privileges, server is not running on the targeted host, etc.),
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> will return an error and terminate.
    </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="R2-APP-PSQL-4"
></A
><H3
>Entering SQL Commands</H3
><P
>    In normal operation, <SPAN
CLASS="APPLICATION"
>psql</SPAN
> provides a
    prompt with the name of the database to which
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> is currently connected, followed by
    the string <TT
CLASS="LITERAL"
>=&gt;</TT
>. For example,
</P><PRE
CLASS="PROGRAMLISTING"
>$ <KBD
CLASS="USERINPUT"
>psql testdb</KBD
>
Welcome to psql 7.4.1, the PostgreSQL interactive terminal.

Type:  \copyright for distribution terms
       \h for help with SQL commands
       \? for help on internal slash commands
       \g or terminate with semicolon to execute query
       \q to quit

testdb=&#62;</PRE
><P>
    </P
><P
>    At the prompt, the user may type in <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> commands.
    Ordinarily, input lines are sent to the server when a
    command-terminating semicolon is reached. An end of line does not
    terminate a command.  Thus commands can be spread over several lines for
    clarity. If the command was sent and without error, the results of the command
    are displayed on the screen.
    </P
><P
>    Whenever a command is executed, <SPAN
CLASS="APPLICATION"
>psql</SPAN
> also polls
    for asynchronous notification events generated by
    <A
HREF="sql-listen.html"
><I
>LISTEN</I
></A
> and
    <A
HREF="sql-notify.html"
><I
>NOTIFY</I
></A
>.
    </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN45845"
></A
><H3
>Meta-Commands</H3
><P
>    Anything you enter in <SPAN
CLASS="APPLICATION"
>psql</SPAN
> that begins
    with an unquoted backslash is a <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
    meta-command that is processed by <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
    itself. These commands are what makes
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> interesting for administration or
    scripting. Meta-commands are more commonly called slash or backslash
    commands.
    </P
><P
>    The format of a <SPAN
CLASS="APPLICATION"
>psql</SPAN
> command is the backslash, 
    followed immediately by a command verb, then any arguments. The arguments
    are separated from the command verb and each other by any number of 
    whitespace characters.
    </P
><P
>    To include whitespace into an argument you may quote it with a
    single quote. To include a single quote into such an argument,
    precede it by a backslash. Anything contained in single quotes is
    furthermore subject to C-like substitutions for
    <TT
CLASS="LITERAL"
>\n</TT
> (new line), <TT
CLASS="LITERAL"
>\t</TT
> (tab),
    <TT
CLASS="LITERAL"
>\</TT
><VAR
CLASS="REPLACEABLE"
>digits</VAR
>,
    <TT
CLASS="LITERAL"
>\0</TT
><VAR
CLASS="REPLACEABLE"
>digits</VAR
>, and
    <TT
CLASS="LITERAL"
>\0x</TT
><VAR
CLASS="REPLACEABLE"
>digits</VAR
> (the
    character with the given decimal, octal, or hexadecimal code).
    </P
><P
>    If an unquoted argument begins with a colon (<TT
CLASS="LITERAL"
>:</TT
>),
    it is taken as a <SPAN
CLASS="APPLICATION"
>psql</SPAN
> variable and the value of the
    variable is used as the argument instead.
    </P
><P
>    Arguments that are enclosed in backquotes (<TT
CLASS="LITERAL"
>`</TT
>)
    are taken as a command line that is passed to the shell. The
    output of the command (with any trailing newline removed) is taken
    as the argument value. The above escape sequences also apply in
    backquotes.
    </P
><P
>    Some commands take an <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> identifier (such as a
    table name) as argument. These arguments follow the syntax rules
    of <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>: Unquoted letters are forced to
    lowercase, while double quotes (<TT
CLASS="LITERAL"
>"</TT
>) protect letters
    from case conversion and allow incorporation of whitespace into
    the identifier.  Within double quotes, paired double quotes reduce
    to a single double quote in the resulting name.  For example,
    <TT
CLASS="LITERAL"
>FOO"BAR"BAZ</TT
> is interpreted as <TT
CLASS="LITERAL"
>fooBARbaz</TT
>,
    and <TT
CLASS="LITERAL"
>"A weird"" name"</TT
> becomes <TT
CLASS="LITERAL"
>A weird"
    name</TT
>.
    </P
><P
>    Parsing for arguments stops when another unquoted backslash occurs.
    This is taken as the beginning of a new meta-command. The special
    sequence <TT
CLASS="LITERAL"
>\\</TT
> (two backslashes) marks the end of
    arguments and continues parsing <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> commands, if
    any. That way <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> and
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> commands can be freely mixed on a
    line. But in any case, the arguments of a meta-command cannot
    continue beyond the end of the line.
    </P
><P
>    The following meta-commands are defined:

    <P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>\a</TT
></DT
><DD
><P
>	If the current table output format is unaligned, it is switched to aligned.
	If it is not unaligned, it is set to unaligned. This command is
	kept for backwards compatibility. See <TT
CLASS="COMMAND"
>\pset</TT
> for a
	general solution.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\cd</TT
> [<SPAN
CLASS="OPTIONAL"
><VAR
CLASS="REPLACEABLE"
>directory</VAR
></SPAN
>]</DT
><DD
><P
>	 Changes the current working directory to
	 <VAR
CLASS="REPLACEABLE"
>directory</VAR
>. Without argument, changes
	 to the current user's home directory.
        </P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	  To print your current working directory, use <TT
CLASS="LITERAL"
>\!pwd</TT
>.
	 </P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\C</TT
> [ <VAR
CLASS="REPLACEABLE"
>title</VAR
> ]</DT
><DD
><P
>        Sets the title of any tables being printed as the result of a
        query or unset any such title. This command is equivalent to
        <TT
CLASS="LITERAL"
>\pset title <VAR
CLASS="REPLACEABLE"
>title</VAR
></TT
>. (The name of
        this command derives from <SPAN
CLASS="QUOTE"
>"caption"</SPAN
>, as it was
        previously only used to set the caption in an
        <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> table.)
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\connect</TT
> (or <TT
CLASS="LITERAL"
>\c</TT
>) [ <VAR
CLASS="REPLACEABLE"
>dbname</VAR
> [ <VAR
CLASS="REPLACEABLE"
>username</VAR
> ] ]</DT
><DD
><P
>	Establishes a connection to a new database and/or under a user
	name. The previous connection is closed. If <VAR
CLASS="REPLACEABLE"
>dbname</VAR
> is <TT
CLASS="LITERAL"
>-</TT
>
	the current database name is assumed.
	</P
><P
>	If <VAR
CLASS="REPLACEABLE"
>username</VAR
> is
	omitted the current user name is assumed. </P
><P
>	As a special rule, <TT
CLASS="COMMAND"
>\connect</TT
> without any
	arguments will connect to the default database as the default
	user (as you would have gotten by starting
	<SPAN
CLASS="APPLICATION"
>psql</SPAN
> without any arguments).
	</P
><P
>	If the connection attempt failed (wrong user name, access
	denied, etc.), the previous connection will be kept if and only
	if <SPAN
CLASS="APPLICATION"
>psql</SPAN
> is in interactive mode. When
	executing a non-interactive script, processing will immediately
	stop with an error. This distinction was chosen as a user
	convenience against typos on the one hand, and a safety
	mechanism that scripts are not accidentally acting on the wrong
	database on the other hand.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\copy <VAR
CLASS="REPLACEABLE"
>table</VAR
>
	[ ( <VAR
CLASS="REPLACEABLE"
>column_list</VAR
> ) ]
        { <TT
CLASS="LITERAL"
>from</TT
> | <TT
CLASS="LITERAL"
>to</TT
> }
	<VAR
CLASS="REPLACEABLE"
>filename</VAR
> | stdin | stdout
        [ <TT
CLASS="LITERAL"
>with</TT
> ] 
            [ <TT
CLASS="LITERAL"
>oids</TT
> ] 
            [ <TT
CLASS="LITERAL"
>delimiter [as] </TT
> '<VAR
CLASS="REPLACEABLE"
>character</VAR
>' ]
            [ <TT
CLASS="LITERAL"
>null [as] </TT
> '<VAR
CLASS="REPLACEABLE"
>string</VAR
>' ]</TT
></DT
><DD
><P
>        Performs a frontend (client) copy. This is an operation that
        runs an <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> <A
HREF="sql-copy.html"
><I
>COPY</I
></A
> command, but instead of the server
        reading or writing the specified file,
        <SPAN
CLASS="APPLICATION"
>psql</SPAN
> reads or writes the file and
        routes the data between the server and the local file system.
	This means that file accessibility and privileges are those
	of the local user, not the server, and no SQL superuser
	privileges are required.
	</P
><P
>	The syntax of the command is similar to that of the
	<ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> <TT
CLASS="COMMAND"
>COPY</TT
> command.  (See its
	description for the details.)  Note that, because of this,
	special parsing rules apply to the <TT
CLASS="COMMAND"
>\copy</TT
>
	command. In particular, the variable substitution rules and
	backslash escapes do not apply.
	</P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	This operation is not as efficient as the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>
	<TT
CLASS="COMMAND"
>COPY</TT
> command because all data must pass
	through the client/server connection. For large
	amounts of data the other technique may be preferable.
        </P
></BLOCKQUOTE
></DIV
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>        Note the difference in interpretation of
        <TT
CLASS="LITERAL"
>stdin</TT
> and <TT
CLASS="LITERAL"
>stdout</TT
> between
        client and server copies: in a client copy these always
        refer to <SPAN
CLASS="APPLICATION"
>psql</SPAN
>'s input and output
        stream. On a server copy <TT
CLASS="LITERAL"
>stdin</TT
> comes from
        wherever the <TT
CLASS="COMMAND"
>COPY</TT
> itself came from (for
        example, a script run with the <VAR
CLASS="OPTION"
>-f</VAR
> option), and
        <TT
CLASS="LITERAL"
>stdout</TT
> refers to the query output stream (see
        <TT
CLASS="COMMAND"
>\o</TT
> meta-command below).
        </P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\copyright</TT
></DT
><DD
><P
>        Shows the copyright and distribution terms of
        <SPAN
CLASS="APPLICATION"
>PostgreSQL</SPAN
>.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\d</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>	For each relation (table, view, index, or sequence) matching the
	<VAR
CLASS="REPLACEABLE"
>pattern</VAR
>, show all
	columns, their types, and any special
	attributes such as <TT
CLASS="LITERAL"
>NOT NULL</TT
> or defaults, if
	any. Associated indexes, constraints, rules, and triggers are
	also shown, as is the view definition if the relation is a view.
	(<SPAN
CLASS="QUOTE"
>"Matching the pattern"</SPAN
> is defined below.)
	</P
><P
>	The command form <TT
CLASS="LITERAL"
>\d+</TT
> is identical, but any
	comments associated with the table columns are shown as well.
	</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	If <TT
CLASS="COMMAND"
>\d</TT
> is used without a
	<VAR
CLASS="REPLACEABLE"
>pattern</VAR
> argument, it is
	equivalent to <TT
CLASS="COMMAND"
>\dtvs</TT
> which will show a list of
	all tables, views, and sequences. This is purely a convenience
	measure.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\da</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Lists all available aggregate functions, together with the data
        type they operate on. If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>
        is specified, only aggregates whose names match the pattern are shown.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\dc</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Lists all available conversions between character-set encodings.
	If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>
        is specified, only conversions whose names match the pattern are
	listed.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\dC</TT
></DT
><DD
><P
>        Lists all available type casts.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\dd</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Shows the descriptions of objects matching the <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>, or of all visible objects if
	no argument is given.  But in either case, only objects that have
	a description are listed.
        (<SPAN
CLASS="QUOTE"
>"Object"</SPAN
> covers aggregates, functions, operators,
        types, relations (tables, views, indexes, sequences, large
        objects), rules, and triggers.) For example:
</P><PRE
CLASS="PROGRAMLISTING"
>=&#62; <KBD
CLASS="USERINPUT"
>\dd version</KBD
>
                     Object descriptions
   Schema   |  Name   |  Object  |        Description
------------+---------+----------+---------------------------
 pg_catalog | version | function | PostgreSQL version string
(1 row)</PRE
><P>
        </P
><P
>        Descriptions for objects can be created with the
        <TT
CLASS="COMMAND"
>COMMENT</TT
> <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> command.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\dD</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Lists all available domains. If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>
        is specified, only matching domains are shown.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\df [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</TT
></DT
><DD
><P
>        Lists available functions, together with their argument and
        return types. If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>
        is specified, only functions whose names match the pattern are shown.
	If the form
        <TT
CLASS="LITERAL"
>\df+</TT
> is used, additional information about
        each function, including language and description, is shown.
        </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>        To reduce clutter, <TT
CLASS="LITERAL"
>\df</TT
> does not show data type I/O
	functions.  This is implemented by ignoring functions that accept
	or return type <TT
CLASS="TYPE"
>cstring</TT
>.
        </P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\distvS [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</TT
></DT
><DD
><P
>	This is not the actual command name: the letters i, s, t, v, S
	stand for index, sequence, table, view, and system table,
	respectively. You can specify any or all of these letters, in any
	order, to obtain a listing of all the matching objects.  The letter
	S restricts the listing to system objects; without S, only non-system
	objects are shown.
	If <TT
CLASS="LITERAL"
>+</TT
> is appended to the command name, each object is
	listed with its associated description, if any.
	</P
><P
>	If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> is
	specified, only objects whose names match the pattern are listed.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\dl</TT
></DT
><DD
><P
>	This is an alias for <TT
CLASS="COMMAND"
>\lo_list</TT
>, which shows a
	list of large objects.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\dn</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Lists all available schemas (namespaces). If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> (a regular expression)
        is specified, only schemas whose names match the pattern are listed.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\do [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</TT
></DT
><DD
><P
>        Lists available operators with their operand and return types.
	If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> is
	specified, only operators whose names match the pattern are listed.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\dp</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Produces a list of all available tables with their
        associated access privileges.
	If <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> is
	specified, only tables whose names match the pattern are listed.
	</P
><P
>	The commands <A
HREF="sql-grant.html"
>GRANT</A
> and
	<A
HREF="sql-revoke.html"
>REVOKE</A
>
	are used to set access privileges.  See <A
HREF="sql-grant.html"
>GRANT</A
>
	for more information.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\dT [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</TT
></DT
><DD
><P
>        Lists all data types or only those that match <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>. The command form
        <TT
CLASS="LITERAL"
>\dT+</TT
> shows extra information.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\du [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</TT
></DT
><DD
><P
>        Lists all database users or only those that match <VAR
CLASS="REPLACEABLE"
>pattern</VAR
>.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\edit</TT
> (or <TT
CLASS="LITERAL"
>\e</TT
>) [ <VAR
CLASS="REPLACEABLE"
>filename</VAR
> ]</DT
><DD
><P
>        If <VAR
CLASS="REPLACEABLE"
>filename</VAR
> is
        specified, the file is edited; after the editor exits, its
        content is copied back to the query buffer. If no argument is
        given, the current query buffer is copied to a temporary file
        which is then edited in the same fashion.
        </P
><P
>        The new query buffer is then re-parsed according to the normal
        rules of <SPAN
CLASS="APPLICATION"
>psql</SPAN
>, where the whole buffer
        is treated as a single line. (Thus you cannot make scripts this
        way. Use <TT
CLASS="COMMAND"
>\i</TT
> for that.) This means also that
        if the query ends with (or rather contains) a semicolon, it is
        immediately executed. In other cases it will merely wait in the
        query buffer.
        </P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>        <SPAN
CLASS="APPLICATION"
>psql</SPAN
> searches the environment
        variables <TT
CLASS="ENVAR"
>PSQL_EDITOR</TT
>, <TT
CLASS="ENVAR"
>EDITOR</TT
>, and
        <TT
CLASS="ENVAR"
>VISUAL</TT
> (in that order) for an editor to use. If
        all of them are unset, <TT
CLASS="FILENAME"
>/bin/vi</TT
> is run.
        </P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\echo</TT
> <VAR
CLASS="REPLACEABLE"
>text</VAR
> [ ... ]</DT
><DD
><P
>        Prints the arguments to the standard output, separated by one
        space and followed by a newline. This can be useful to
        intersperse information in the output of scripts. For example:
</P><PRE
CLASS="PROGRAMLISTING"
>=&#62; <KBD
CLASS="USERINPUT"
>\echo `date`</KBD
>
Tue Oct 26 21:40:57 CEST 1999</PRE
><P>
        If the first argument is an unquoted <TT
CLASS="LITERAL"
>-n</TT
> the the trailing
        newline is not written.
	</P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	If you use the <TT
CLASS="COMMAND"
>\o</TT
> command to redirect your
	query output you may wish to use <TT
CLASS="COMMAND"
>\qecho</TT
>
	instead of this command.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\encoding</TT
> [ <VAR
CLASS="REPLACEABLE"
>encoding</VAR
> ]</DT
><DD
><P
>        Sets the client character set encoding.  Without an argument, this command
        shows the current encoding.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\f</TT
> [ <VAR
CLASS="REPLACEABLE"
>string</VAR
> ]</DT
><DD
><P
>        Sets the field separator for unaligned query output. The default
        is the vertical bar (<TT
CLASS="LITERAL"
>|</TT
>). See also
        <TT
CLASS="COMMAND"
>\pset</TT
> for a generic way of setting output
        options.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\g</TT
> [ { <VAR
CLASS="REPLACEABLE"
>filename</VAR
> | <TT
CLASS="LITERAL"
>|</TT
><VAR
CLASS="REPLACEABLE"
>command</VAR
> } ]</DT
><DD
><P
>        Sends the current query input buffer to the server and
        optionally saves the output in <VAR
CLASS="REPLACEABLE"
>filename</VAR
> or pipes the output
        into a separate Unix shell to execute <VAR
CLASS="REPLACEABLE"
>command</VAR
>. A bare
        <TT
CLASS="LITERAL"
>\g</TT
> is virtually equivalent to a semicolon. A
        <TT
CLASS="LITERAL"
>\g</TT
> with argument is a <SPAN
CLASS="QUOTE"
>"one-shot"</SPAN
>
        alternative to the <TT
CLASS="COMMAND"
>\o</TT
> command.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\help</TT
> (or <TT
CLASS="LITERAL"
>\h</TT
>) [ <VAR
CLASS="REPLACEABLE"
>command</VAR
> ]</DT
><DD
><P
>        Gives syntax help on the specified <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>
        command. If <VAR
CLASS="REPLACEABLE"
>command</VAR
>
        is not specified, then <SPAN
CLASS="APPLICATION"
>psql</SPAN
> will list
        all the commands for which syntax help is available. If
        <VAR
CLASS="REPLACEABLE"
>command</VAR
> is an
        asterisk (<TT
CLASS="LITERAL"
>*</TT
>), then syntax help on all
        <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> commands is shown.
        </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	To simplify typing, commands that consists of several words do
	not have to be quoted. Thus it is fine to type <KBD
CLASS="USERINPUT"
>\help
	alter table</KBD
>.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\H</TT
></DT
><DD
><P
>	Turns on <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> query output format. If the
	<ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> format is already on, it is switched
	back to the default aligned text format. This command is for
	compatibility and convenience, but see <TT
CLASS="COMMAND"
>\pset</TT
>
	about setting other output options.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\i</TT
> <VAR
CLASS="REPLACEABLE"
>filename</VAR
></DT
><DD
><P
>        Reads input from the file <VAR
CLASS="REPLACEABLE"
>filename</VAR
> and executes it as
        though it had been typed on the keyboard.
        </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	If you want to see the lines on the screen as they are read you
	must set the variable <VAR
CLASS="VARNAME"
>ECHO</VAR
> to
	<TT
CLASS="LITERAL"
>all</TT
>.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\l</TT
> (or <TT
CLASS="LITERAL"
>\list</TT
>)</DT
><DD
><P
>        List the names, owners, and character set encodings of all the databases in
        the server.  Append a <TT
CLASS="LITERAL"
>+</TT
> to the command name to
        see any descriptions for the databases as well.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\lo_export</TT
> <VAR
CLASS="REPLACEABLE"
>loid</VAR
> <VAR
CLASS="REPLACEABLE"
>filename</VAR
></DT
><DD
><P
>	Reads the large object with <ACRONYM
CLASS="ACRONYM"
>OID</ACRONYM
> <VAR
CLASS="REPLACEABLE"
>loid</VAR
> from the database and
	writes it to <VAR
CLASS="REPLACEABLE"
>filename</VAR
>. Note that this is
	subtly different from the server function
	<CODE
CLASS="FUNCTION"
>lo_export</CODE
>, which acts with the permissions
	of the user that the database server runs as and on the server's
	file system.
	</P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	Use <TT
CLASS="COMMAND"
>\lo_list</TT
> to find out the large object's
	<ACRONYM
CLASS="ACRONYM"
>OID</ACRONYM
>.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\lo_import</TT
> <VAR
CLASS="REPLACEABLE"
>filename</VAR
> [ <VAR
CLASS="REPLACEABLE"
>comment</VAR
> ]</DT
><DD
><P
>	Stores the file into a <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>
	large object. Optionally, it associates the given
	comment with the object. Example:
</P><PRE
CLASS="PROGRAMLISTING"
>foo=&#62; <KBD
CLASS="USERINPUT"
>\lo_import '/home/peter/pictures/photo.xcf' 'a picture of me'</KBD
>
lo_import 152801</PRE
><P>
	The response indicates that the large object received object ID
	152801 which one ought to remember if one wants to access the
	object ever again. For that reason it is recommended to always
	associate a human-readable comment with every object. Those can
	then be seen with the <TT
CLASS="COMMAND"
>\lo_list</TT
> command.
	</P
><P
>	Note that this command is subtly different from the server-side
	<CODE
CLASS="FUNCTION"
>lo_import</CODE
> because it acts as the local user
	on the local file system, rather than the server's user and file
	system.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\lo_list</TT
></DT
><DD
><P
>	Shows a list of all <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>
	large objects currently stored in the database,
	along with any comments provided for them.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>\lo_unlink</TT
> <VAR
CLASS="REPLACEABLE"
>loid</VAR
></DT
><DD
><P
>	Deletes the large object with <ACRONYM
CLASS="ACRONYM"
>OID</ACRONYM
>
	<VAR
CLASS="REPLACEABLE"
>loid</VAR
> from the
	database.
	</P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	Use <TT
CLASS="COMMAND"
>\lo_list</TT
> to find out the large object's
	<ACRONYM
CLASS="ACRONYM"
>OID</ACRONYM
>.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\o</TT
> [ {<VAR
CLASS="REPLACEABLE"
>filename</VAR
> | <TT
CLASS="LITERAL"
>|</TT
><VAR
CLASS="REPLACEABLE"
>command</VAR
>} ]</DT
><DD
><P
>        Saves future query results to the file <VAR
CLASS="REPLACEABLE"
>filename</VAR
> or pipes future results
        into a separate Unix shell to execute <VAR
CLASS="REPLACEABLE"
>command</VAR
>. If no arguments are
        specified, the query output will be reset to the standard output.
        </P
><P
>	<SPAN
CLASS="QUOTE"
>"Query results"</SPAN
> includes all tables, command
	responses, and notices obtained from the database server, as
	well as output of various backslash commands that query the
	database (such as <TT
CLASS="COMMAND"
>\d</TT
>), but not error
	messages.
	</P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	To intersperse text output in between query results, use
	<TT
CLASS="COMMAND"
>\qecho</TT
>.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\p</TT
></DT
><DD
><P
>        Print the current query buffer to the standard output.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\pset</TT
> <VAR
CLASS="REPLACEABLE"
>parameter</VAR
> [ <VAR
CLASS="REPLACEABLE"
>value</VAR
> ]</DT
><DD
><P
>	This command sets options affecting the output of query result
	tables. <VAR
CLASS="REPLACEABLE"
>parameter</VAR
>
	describes which option is to be set. The semantics of
	<VAR
CLASS="REPLACEABLE"
>value</VAR
> depend
	thereon.
	</P
><P
>	Adjustable printing options are:
	<P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>format</TT
></DT
><DD
><P
>	  Sets the output format to one of <TT
CLASS="LITERAL"
>unaligned</TT
>,
	  <TT
CLASS="LITERAL"
>aligned</TT
>, <TT
CLASS="LITERAL"
>html</TT
>, or
	  <TT
CLASS="LITERAL"
>latex</TT
>. Unique abbreviations are allowed.
	  (That would mean one letter is enough.)
	  </P
><P
>	  <SPAN
CLASS="QUOTE"
>"Unaligned"</SPAN
> writes all columns of a row on a
	  line, separated by the currently active field separator. This
	  is intended to create output that might be intended to be read
	  in by other programs (tab-separated, comma-separated).
	  <SPAN
CLASS="QUOTE"
>"Aligned"</SPAN
> mode is the standard, human-readable,
	  nicely formatted text output that is default. The
	  <SPAN
CLASS="QUOTE"
>"<ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
>"</SPAN
> and
	  <SPAN
CLASS="QUOTE"
>"LaTeX"</SPAN
> modes put out tables that are intended to
	  be included in documents using the respective mark-up
	  language. They are not complete documents! (This might not be
	  so dramatic in <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
>, but in LaTeX you must
	  have a complete document wrapper.)
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>border</TT
></DT
><DD
><P
>	  The second argument must be a number. In general, the higher
	  the number the more borders and lines the tables will have,
	  but this depends on the particular format. In
	  <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> mode, this will translate directly
	  into the <TT
CLASS="LITERAL"
>border=...</TT
> attribute, in the
	  others only values 0 (no border), 1 (internal dividing lines),
	  and 2 (table frame) make sense.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>expanded</TT
> (or <TT
CLASS="LITERAL"
>x</TT
>)</DT
><DD
><P
>	  Toggles between regular and expanded format. When expanded
	  format is enabled, all output has two columns with the column
	  name on the left and the data on the right. This mode is
	  useful if the data wouldn't fit on the screen in the normal
	  <SPAN
CLASS="QUOTE"
>"horizontal"</SPAN
> mode.
	  </P
><P
>	  Expanded mode is supported by all four output formats.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>null</TT
></DT
><DD
><P
>	  The second argument is a string that should be printed
	  whenever a column is null. The default is not to print
	  anything, which can easily be mistaken for, say, an empty
	  string. Thus, one might choose to write <TT
CLASS="LITERAL"
>\pset null
	  '(null)'</TT
>.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>fieldsep</TT
></DT
><DD
><P
>	  Specifies the field separator to be used in unaligned output
	  mode. That way one can create, for example, tab- or
	  comma-separated output, which other programs might prefer. To
	  set a tab as field separator, type <TT
CLASS="LITERAL"
>\pset fieldsep
	  '\t'</TT
>. The default field separator is
	  <TT
CLASS="LITERAL"
>'|'</TT
> (a vertical bar).
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>footer</TT
></DT
><DD
><P
>	  Toggles the display of the default footer <TT
CLASS="LITERAL"
>(x
	  rows)</TT
>.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>recordsep</TT
></DT
><DD
><P
>          Specifies the record (line) separator to use in unaligned
          output mode. The default is a newline character.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>tuples_only</TT
> (or <TT
CLASS="LITERAL"
>t</TT
>)</DT
><DD
><P
>	  Toggles between tuples only and full display. Full display may
	  show extra information such as column headers, titles, and
	  various footers. In tuples only mode, only actual table data
	  is shown.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>title</TT
> [ <VAR
CLASS="REPLACEABLE"
>text</VAR
> ]</DT
><DD
><P
>	  Sets the table title for any subsequently printed tables. This
	  can be used to give your output descriptive tags. If no
	  argument is given, the title is unset.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>tableattr</TT
> (or <TT
CLASS="LITERAL"
>T</TT
>) [ <VAR
CLASS="REPLACEABLE"
>text</VAR
> ]</DT
><DD
><P
>	  Allows you to specify any attributes to be placed inside the
	  <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> <CODE
CLASS="SGMLTAG"
>table</CODE
> tag. This
	  could for example be <TT
CLASS="LITERAL"
>cellpadding</TT
> or
	  <TT
CLASS="LITERAL"
>bgcolor</TT
>. Note that you probably don't want
	  to specify <TT
CLASS="LITERAL"
>border</TT
> here, as that is already
	  taken care of by <TT
CLASS="LITERAL"
>\pset border</TT
>.
	  </P
></DD
><DT
><TT
CLASS="LITERAL"
>pager</TT
></DT
><DD
><P
>	  Controls use of a pager for query and <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
	  help output. If the environment variable <TT
CLASS="ENVAR"
>PAGER</TT
>
	  is set, the output is piped to the specified program.
	  Otherwise a platform-dependent default (such as
	  <TT
CLASS="FILENAME"
>more</TT
>) is used.
	  </P
><P
>	  When the pager is off, the pager is not used. When the pager
	  is on, the pager is used only when appropriate, i.e. the
	  output is to a terminal and will not fit on the screen.
	  (<SPAN
CLASS="APPLICATION"
>psql</SPAN
> does not do a perfect job of estimating
	  when to use the pager.) <TT
CLASS="LITERAL"
>\pset pager</TT
> turns the
	  pager on and off. Pager can also be set to <TT
CLASS="LITERAL"
>always</TT
>,
	  which causes the pager to be always used.
	  </P
></DD
></DL
></DIV
><P>
        </P
><P
>	Illustrations on how these different formats look can be seen in
	the <A
HREF="app-psql.html#APP-PSQL-EXAMPLES"
><I
>Examples</I
></A
> section.
	</P
><DIV
CLASS="TIP"
><BLOCKQUOTE
CLASS="TIP"
><P
><B
>Tip: </B
>	There are various shortcut commands for <TT
CLASS="COMMAND"
>\pset</TT
>. See
	<TT
CLASS="COMMAND"
>\a</TT
>, <TT
CLASS="COMMAND"
>\C</TT
>, <TT
CLASS="COMMAND"
>\H</TT
>,
	<TT
CLASS="COMMAND"
>\t</TT
>, <TT
CLASS="COMMAND"
>\T</TT
>, and <TT
CLASS="COMMAND"
>\x</TT
>.
	</P
></BLOCKQUOTE
></DIV
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	It is an error to call <TT
CLASS="COMMAND"
>\pset</TT
> without
	arguments. In the future this call might show the current status
	of all printing options.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\q</TT
></DT
><DD
><P
>        Quits the <SPAN
CLASS="APPLICATION"
>psql</SPAN
> program.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\qecho</TT
> <VAR
CLASS="REPLACEABLE"
>text</VAR
> [ ... ]</DT
><DD
><P
>	This command is identical to <TT
CLASS="COMMAND"
>\echo</TT
> except
	that all output will be written to the query output channel, as
	set by <TT
CLASS="COMMAND"
>\o</TT
>.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\r</TT
></DT
><DD
><P
>        Resets (clears) the query buffer.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\s</TT
> [ <VAR
CLASS="REPLACEABLE"
>filename</VAR
> ]</DT
><DD
><P
>        Print or save the command line history to <VAR
CLASS="REPLACEABLE"
>filename</VAR
>. If <VAR
CLASS="REPLACEABLE"
>filename</VAR
> is omitted, the history
        is written to the standard output. This option is only available
        if <SPAN
CLASS="APPLICATION"
>psql</SPAN
> is configured to use the
        <ACRONYM
CLASS="ACRONYM"
>GNU</ACRONYM
> history library.
        </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	In the current version, it is no longer necessary to save the
	command history, since that will be done automatically on
	program termination. The history is also loaded automatically
	every time <SPAN
CLASS="APPLICATION"
>psql</SPAN
> starts up.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\set</TT
> [ <VAR
CLASS="REPLACEABLE"
>name</VAR
> [ <VAR
CLASS="REPLACEABLE"
>value</VAR
> [ ... ]]]</DT
><DD
><P
>	Sets the internal variable <VAR
CLASS="REPLACEABLE"
>name</VAR
> to <VAR
CLASS="REPLACEABLE"
>value</VAR
> or, if more than one value
	is given, to the concatenation of all of them. If no second
	argument is given, the variable is just set with no value. To
	unset a variable, use the <TT
CLASS="COMMAND"
>\unset</TT
> command.
	</P
><P
>	Valid variable names can contain characters, digits, and
	underscores. See the section <A
HREF="app-psql.html#APP-PSQL-VARIABLES"
><I
>Variables</I
></A
> below for details.
	</P
><P
>	Although you are welcome to set any variable to anything you
	want, <SPAN
CLASS="APPLICATION"
>psql</SPAN
> treats several variables
	as special. They are documented in the section about variables.
	</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	This command is totally separate from the <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>
	command <A
HREF="sql-set.html"
><I
>SET</I
></A
>.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><TT
CLASS="LITERAL"
>\t</TT
></DT
><DD
><P
>        Toggles the display of output column name headings and row count
        footer. This command is equivalent to <TT
CLASS="LITERAL"
>\pset
        tuples_only</TT
> and is provided for convenience.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\T</TT
> <VAR
CLASS="REPLACEABLE"
>table_options</VAR
></DT
><DD
><P
>        Allows you to specify attributes to be placed within the
        <CODE
CLASS="SGMLTAG"
>table</CODE
> tag in <ACRONYM
CLASS="ACRONYM"
>HTML</ACRONYM
> tabular
        output mode. This command is equivalent to <TT
CLASS="LITERAL"
>\pset
        tableattr <VAR
CLASS="REPLACEABLE"
>table_options</VAR
></TT
>.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\timing</TT
></DT
><DD
><P
>         Toggles a display of how long each SQL statement takes, in milliseconds.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\w</TT
> {<VAR
CLASS="REPLACEABLE"
>filename</VAR
> | <VAR
CLASS="REPLACEABLE"
>|command</VAR
>}</DT
><DD
><P
>        Outputs the current query buffer to the file <VAR
CLASS="REPLACEABLE"
>filename</VAR
> or pipes it to the Unix
        command <VAR
CLASS="REPLACEABLE"
>command</VAR
>.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\x</TT
></DT
><DD
><P
>        Toggles extended table formatting mode. As such it is equivalent to
	<TT
CLASS="LITERAL"
>\pset expanded</TT
>.
       </P
></DD
><DT
><TT
CLASS="LITERAL"
>\z</TT
> [ <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> ]</DT
><DD
><P
>        Produces a list of all available tables with their
        associated access privileges.
	If a <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> is
	specified, only tables whose names match the pattern are listed.
	</P
><P
>	The commands <A
HREF="sql-grant.html"
>GRANT</A
> and
	<A
HREF="sql-revoke.html"
>REVOKE</A
>
	are used to set access privileges.  See <A
HREF="sql-grant.html"
>GRANT</A
>
	for more information.
	</P
><P
>	This is an alias for <TT
CLASS="COMMAND"
>\dp</TT
> (<SPAN
CLASS="QUOTE"
>"display
	privileges"</SPAN
>).
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\!</TT
> [ <VAR
CLASS="REPLACEABLE"
>command</VAR
> ]</DT
><DD
><P
>        Escapes to a separate Unix shell or executes the Unix command
        <VAR
CLASS="REPLACEABLE"
>command</VAR
>. The
        arguments are not further interpreted, the shell will see them
        as is.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>\?</TT
></DT
><DD
><P
>        Shows help information about the backslash commands.
        </P
></DD
></DL
></DIV
><P>
  </P
><P
>   The various <TT
CLASS="LITERAL"
>\d</TT
> commands accept a <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> parameter to specify the
   object name(s) to be displayed.  <TT
CLASS="LITERAL"
>*</TT
> means <SPAN
CLASS="QUOTE"
>"any
   sequence of characters"</SPAN
> and <TT
CLASS="LITERAL"
>?</TT
> means <SPAN
CLASS="QUOTE"
>"any single
   character"</SPAN
>.  (This notation is comparable to Unix shell file name
   patterns.)  Advanced users can also use regular-expression
   notations such as character classes, for example <TT
CLASS="LITERAL"
>[0-9]</TT
>
   to match <SPAN
CLASS="QUOTE"
>"any digit"</SPAN
>.  To make any of these
   pattern-matching characters be interpreted literally, surround it
   with double quotes.
  </P
><P
>   A pattern that contains an (unquoted) dot is interpreted as a schema
   name pattern followed by an object name pattern.  For example,
   <TT
CLASS="LITERAL"
>\dt foo*.bar*</TT
> displays all tables in schemas whose name
   starts with <TT
CLASS="LITERAL"
>foo</TT
> and whose table name 
   starts with <TT
CLASS="LITERAL"
>bar</TT
>.  If no dot appears, then the pattern
   matches only objects that are visible in the current schema search path.
  </P
><P
>   Whenever the <VAR
CLASS="REPLACEABLE"
>pattern</VAR
> parameter
   is omitted completely, the <TT
CLASS="LITERAL"
>\d</TT
> commands display all objects
   that are visible in the current schema search path.  To see all objects
   in the database, use the pattern <TT
CLASS="LITERAL"
>*.*</TT
>.
  </P
></DIV
><DIV
CLASS="REFSECT2"
><A
NAME="AEN46506"
></A
><H3
>Advanced features</H3
><DIV
CLASS="REFSECT3"
><A
NAME="APP-PSQL-VARIABLES"
></A
><H4
>Variables</H4
><P
>    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> provides variable substitution
    features similar to common Unix command shells.
    Variables are simply name/value pairs, where the value
    can be any string of any length. To set variables, use the
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> meta-command
    <TT
CLASS="COMMAND"
>\set</TT
>:
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\set foo bar</KBD
></PRE
><P>
    sets the variable <TT
CLASS="LITERAL"
>foo</TT
> to the value
    <TT
CLASS="LITERAL"
>bar</TT
>. To retrieve the content of the variable, precede
    the name with a colon and use it as the argument of any slash
    command:
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\echo :foo</KBD
>
bar</PRE
><P>
    </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>    The arguments of <TT
CLASS="COMMAND"
>\set</TT
> are subject to the same
    substitution rules as with other commands. Thus you can construct
    interesting references such as <TT
CLASS="LITERAL"
>\set :foo
    'something'</TT
> and get <SPAN
CLASS="QUOTE"
>"soft links"</SPAN
> or
    <SPAN
CLASS="QUOTE"
>"variable variables"</SPAN
> of <SPAN
CLASS="PRODUCTNAME"
>Perl</SPAN
>
    or <SPAN
CLASS="PRODUCTNAME"
><ACRONYM
CLASS="ACRONYM"
>PHP</ACRONYM
></SPAN
> fame,
    respectively. Unfortunately (or fortunately?), there is no way to do
    anything useful with these constructs. On the other hand,
    <TT
CLASS="LITERAL"
>\set bar :foo</TT
> is a perfectly valid way to copy a
    variable.
    </P
></BLOCKQUOTE
></DIV
><P
>    If you call <TT
CLASS="COMMAND"
>\set</TT
> without a second argument, the
    variable is set, with an empty string as value. To unset (or delete) a
    variable, use the command <TT
CLASS="COMMAND"
>\unset</TT
>.
    </P
><P
>    <SPAN
CLASS="APPLICATION"
>psql</SPAN
>'s internal variable names can
    consist of letters, numbers, and underscores in any order and any
    number of them. A number of these variables are treated specially
    by <SPAN
CLASS="APPLICATION"
>psql</SPAN
>. They indicate certain option
    settings that can be changed at run time by altering the value of
    the variable or represent some state of the application. Although
    you can use these variables for any other purpose, this is not
    recommended, as the program behavior might grow really strange
    really quickly. By convention, all specially treated variables
    consist of all upper-case letters (and possibly numbers and
    underscores). To ensure maximum compatibility in the future, avoid
    using such variable names for your own purposes. A list of all specially
    treated variables follows.
   </P
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><VAR
CLASS="VARNAME"
>AUTOCOMMIT</VAR
></DT
><DD
><P
>	When <TT
CLASS="LITERAL"
>on</TT
> (the default), each SQL command is automatically
	committed upon successful completion.  To postpone commit in this
	mode, you must enter a <TT
CLASS="COMMAND"
>BEGIN</TT
> or <TT
CLASS="COMMAND"
>START
	TRANSACTION</TT
> SQL command.  When <TT
CLASS="LITERAL"
>off</TT
> or unset, SQL
	commands are not committed until you explicitly issue
	<TT
CLASS="COMMAND"
>COMMIT</TT
> or <TT
CLASS="COMMAND"
>END</TT
>.  The autocommit-off
	mode works by issuing an implicit <TT
CLASS="COMMAND"
>BEGIN</TT
> for you, just
	before any command that is not already in a transaction block and
	is not itself a <TT
CLASS="COMMAND"
>BEGIN</TT
> or other transaction-control
	command.
	</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	 In autocommit-off mode, you must explicitly abandon any failed
	 transaction by entering <TT
CLASS="COMMAND"
>ABORT</TT
> or <TT
CLASS="COMMAND"
>ROLLBACK</TT
>.
	 Also keep in mind that if you exit the session
	 without committing, your work will be lost.
	</P
></BLOCKQUOTE
></DIV
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>	 The autocommit-on mode is <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
>'s traditional
	 behavior, but autocommit-off is closer to the SQL spec.  If you
	 prefer autocommit-off, you may wish to set it in
	 your <TT
CLASS="FILENAME"
>.psqlrc</TT
> file.
	</P
></BLOCKQUOTE
></DIV
></DD
><DT
><VAR
CLASS="VARNAME"
>DBNAME</VAR
></DT
><DD
><P
>        The name of the database you are currently connected to. This is
        set every time you connect to a database (including program
        start-up), but can be unset.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>ECHO</VAR
></DT
><DD
><P
>	If set to <TT
CLASS="LITERAL"
>all</TT
>, all lines
	entered or from a script are written to the standard output
	before they are parsed or executed. To select this behavior on program
	start-up, use the switch <VAR
CLASS="OPTION"
>-a</VAR
>. If set to
	<TT
CLASS="LITERAL"
>queries</TT
>,
	<SPAN
CLASS="APPLICATION"
>psql</SPAN
> merely prints all queries as
	they are sent to the server. The switch for this is
	<VAR
CLASS="OPTION"
>-e</VAR
>.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>ECHO_HIDDEN</VAR
></DT
><DD
><P
>	When this variable is set and a backslash command queries the
	database, the query is first shown. This way you can study the
	<SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> internals and provide
	similar functionality in your own programs. (To select this behavior
	on program start-up, use the switch <VAR
CLASS="OPTION"
>-E</VAR
>.)  If you set
	the variable to the value <TT
CLASS="LITERAL"
>noexec</TT
>, the queries are
	just shown but are not actually sent to the server and executed.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>ENCODING</VAR
></DT
><DD
><P
>        The current client character set encoding.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>HISTCONTROL</VAR
></DT
><DD
><P
>         If this variable is set to <TT
CLASS="LITERAL"
>ignorespace</TT
>,
         lines which begin with a space are not entered into the history
         list. If set to a value of <TT
CLASS="LITERAL"
>ignoredups</TT
>, lines
         matching the previous history line are not entered. A value of
         <TT
CLASS="LITERAL"
>ignoreboth</TT
> combines the two options. If
         unset, or if set to any other value than those above, all lines
         read in interactive mode are saved on the history list.
	</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>        This feature was shamelessly plagiarized from
        <SPAN
CLASS="APPLICATION"
>Bash</SPAN
>.
        </P
></BLOCKQUOTE
></DIV
></DD
><DT
><VAR
CLASS="VARNAME"
>HISTSIZE</VAR
></DT
><DD
><P
>        The number of commands to store in the command history. The
        default value is 500.
	</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>        This feature was shamelessly plagiarized from
        <SPAN
CLASS="APPLICATION"
>Bash</SPAN
>.
        </P
></BLOCKQUOTE
></DIV
></DD
><DT
><VAR
CLASS="VARNAME"
>HOST</VAR
></DT
><DD
><P
>        The database server host you are currently connected to. This is
        set every time you connect to a database (including program
        start-up), but can be unset.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>IGNOREEOF</VAR
></DT
><DD
><P
>         If unset, sending an <ACRONYM
CLASS="ACRONYM"
>EOF</ACRONYM
> character (usually
         <B
CLASS="KEYCAP"
>Control</B
>+<B
CLASS="KEYCAP"
>D</B
>)
         to an interactive session of <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
         will terminate the application. If set to a numeric value,
         that many <ACRONYM
CLASS="ACRONYM"
>EOF</ACRONYM
> characters are ignored before the
         application terminates.  If the variable is set but has no
         numeric value, the default is 10.
	</P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>        This feature was shamelessly plagiarized from
        <SPAN
CLASS="APPLICATION"
>Bash</SPAN
>.
        </P
></BLOCKQUOTE
></DIV
></DD
><DT
><VAR
CLASS="VARNAME"
>LASTOID</VAR
></DT
><DD
><P
>        The value of the last affected OID, as returned from an
        <TT
CLASS="COMMAND"
>INSERT</TT
> or <TT
CLASS="COMMAND"
>lo_insert</TT
>
        command. This variable is only guaranteed to be valid until
        after the result of the next <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> command has
        been displayed.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>ON_ERROR_STOP</VAR
></DT
><DD
><P
>	By default, if non-interactive scripts encounter an error, such
	as a malformed <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> command or internal
	meta-command, processing continues. This has been the
	traditional behavior of <SPAN
CLASS="APPLICATION"
>psql</SPAN
> but it
	is sometimes not desirable. If this variable is set, script
	processing will immediately terminate. If the script was called
	from another script it will terminate in the same fashion. If
	the outermost script was not called from an interactive
	<SPAN
CLASS="APPLICATION"
>psql</SPAN
> session but rather using the
	<VAR
CLASS="OPTION"
>-f</VAR
> option, <SPAN
CLASS="APPLICATION"
>psql</SPAN
> will
	return error code 3, to distinguish this case from fatal error
	conditions (error code 1).
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>PORT</VAR
></DT
><DD
><P
>        The database server port to which you are currently connected.
        This is set every time you connect to a database (including
        program start-up), but can be unset.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>PROMPT1</VAR
><BR><VAR
CLASS="VARNAME"
>PROMPT2</VAR
><BR><VAR
CLASS="VARNAME"
>PROMPT3</VAR
></DT
><DD
><P
>	These specify what the prompts <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
	issues should look like. See <A
HREF="app-psql.html#APP-PSQL-PROMPTING"
><I
>Prompting</I
></A
> below.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>QUIET</VAR
></DT
><DD
><P
>	This variable is equivalent to the command line option
	<VAR
CLASS="OPTION"
>-q</VAR
>. It is probably not too useful in
	interactive mode.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>SINGLELINE</VAR
></DT
><DD
><P
>	This variable is equivalent to the command line option
	<VAR
CLASS="OPTION"
>-S</VAR
>.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>SINGLESTEP</VAR
></DT
><DD
><P
>	This variable is equivalent to the command line option
	<VAR
CLASS="OPTION"
>-s</VAR
>.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>USER</VAR
></DT
><DD
><P
>        The database user you are currently connected as. This is set
        every time you connect to a database (including program
        start-up), but can be unset.
	</P
></DD
><DT
><VAR
CLASS="VARNAME"
>VERBOSITY</VAR
></DT
><DD
><P
>	This variable can be set to the values <TT
CLASS="LITERAL"
>default</TT
>,
	<TT
CLASS="LITERAL"
>verbose</TT
>, or <TT
CLASS="LITERAL"
>terse</TT
> to control the verbosity
	of error reports.
	</P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT3"
><A
NAME="AEN46689"
></A
><H4
><ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> Interpolation</H4
><P
>    An additional useful feature of <SPAN
CLASS="APPLICATION"
>psql</SPAN
>
    variables is that you can substitute (<SPAN
CLASS="QUOTE"
>"interpolate"</SPAN
>)
    them into regular <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> statements. The syntax for
    this is again to prepend the variable name with a colon
    (<TT
CLASS="LITERAL"
>:</TT
>).
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\set foo 'my_table'</KBD
>
testdb=&#62; <KBD
CLASS="USERINPUT"
>SELECT * FROM :foo;</KBD
></PRE
><P>
    would then query the table <TT
CLASS="LITERAL"
>my_table</TT
>. The value of
    the variable is copied literally, so it can even contain unbalanced
    quotes or backslash commands. You must make sure that it makes sense
    where you put it. Variable interpolation will not be performed into
    quoted <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> entities.
    </P
><P
>    A popular application of this facility is to refer to the last
    inserted <ACRONYM
CLASS="ACRONYM"
>OID</ACRONYM
> in subsequent statements to build a
    foreign key scenario. Another possible use of this mechanism is to
    copy the contents of a file into a table column. First load the file into a
    variable and then proceed as above.
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\set content '\'' `cat my_file.txt` '\''</KBD
>
testdb=&#62; <KBD
CLASS="USERINPUT"
>INSERT INTO my_table VALUES (:content);</KBD
></PRE
><P>
    One possible problem with this approach is that <TT
CLASS="FILENAME"
>my_file.txt</TT
>
    might contain single quotes. These need to be escaped so that
    they don't cause a syntax error when the second line is processed. This
    could be done with the program <TT
CLASS="COMMAND"
>sed</TT
>:
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\set content '\'' `sed -e "s/'/\\\\\\'/g" &#60; my_file.txt` '\''</KBD
></PRE
><P>
    Observe the correct number of backslashes (6)! It works
    this way: After <SPAN
CLASS="APPLICATION"
>psql</SPAN
> has parsed this
    line, it passes <TT
CLASS="LITERAL"
>sed -e "s/'/\\\'/g" &#60; my_file.txt</TT
>
    to the shell. The shell will do its own thing inside the double
    quotes and execute <TT
CLASS="COMMAND"
>sed</TT
> with the arguments
    <TT
CLASS="LITERAL"
>-e</TT
> and <TT
CLASS="LITERAL"
>s/'/\\'/g</TT
>. When
    <TT
CLASS="COMMAND"
>sed</TT
> parses this it will replace the two
    backslashes with a single one and then do the substitution. Perhaps
    at one point you thought it was great that all Unix commands use the
    same escape character. And this is ignoring the fact that you might
    have to escape all backslashes as well because
    <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> text constants are also subject to certain
    interpretations. In that case you might be better off preparing the
    file externally.
    </P
><P
>    Since colons may legally appear in SQL commands, the following rule
    applies: the character sequence
    <SPAN
CLASS="QUOTE"
>":name"</SPAN
> is not changed unless <SPAN
CLASS="QUOTE"
>"name"</SPAN
> is the name
    of a variable that is currently set. In any case you can escape
    a colon with a backslash to protect it from substitution. (The
    colon syntax for variables is standard <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> for
    embedded query languages, such as <SPAN
CLASS="APPLICATION"
>ECPG</SPAN
>.
    The colon syntax for array slices and type casts are
    <SPAN
CLASS="PRODUCTNAME"
>PostgreSQL</SPAN
> extensions, hence the
    conflict.)
    </P
></DIV
><DIV
CLASS="REFSECT3"
><A
NAME="APP-PSQL-PROMPTING"
></A
><H4
>Prompting</H4
><P
>    The prompts <SPAN
CLASS="APPLICATION"
>psql</SPAN
> issues can be customized
    to your preference. The three variables <VAR
CLASS="VARNAME"
>PROMPT1</VAR
>,
    <VAR
CLASS="VARNAME"
>PROMPT2</VAR
>, and <VAR
CLASS="VARNAME"
>PROMPT3</VAR
> contain strings
    and special escape sequences that describe the appearance of the
    prompt. Prompt 1 is the normal prompt that is issued when
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> requests a new command. Prompt 2 is
    issued when more input is expected during command input because the
    command was not terminated with a semicolon or a quote was not closed.
    Prompt 3 is issued when you run an <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
>
    <TT
CLASS="COMMAND"
>COPY</TT
> command and you are expected to type in the
    row values on the terminal.
    </P
><P
>    The value of the selected prompt variable is printed literally,
    except where a percent sign (<TT
CLASS="LITERAL"
>%</TT
>) is encountered.
    Depending on the next character, certain other text is substituted
    instead. Defined substitutions are:

    <P
></P
></P><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="LITERAL"
>%M</TT
></DT
><DD
><P
>          The full host name (with domain name) of the database server,
          or <TT
CLASS="LITERAL"
>[local]</TT
> if the connection is over a Unix
          domain socket, or
          <TT
CLASS="LITERAL"
>[local:<VAR
CLASS="REPLACEABLE"
>/dir/name</VAR
>]</TT
>, if the Unix domain socket is not at the compiled in default
          location.
        </P
></DD
><DT
><TT
CLASS="LITERAL"
>%m</TT
></DT
><DD
><P
>          The host name of the database server, truncated at the
          first dot, or <TT
CLASS="LITERAL"
>[local]</TT
> if the connection is
          over a Unix domain socket.
         </P
></DD
><DT
><TT
CLASS="LITERAL"
>%&gt;</TT
></DT
><DD
><P
>The port number at which the database server is listening.</P
></DD
><DT
><TT
CLASS="LITERAL"
>%n</TT
></DT
><DD
><P
>          The database session user name.  (The expansion of this
          value might change during a database session as the result
          of the command <TT
CLASS="COMMAND"
>SET SESSION
          AUTHORIZATION</TT
>.)
         </P
></DD
><DT
><TT
CLASS="LITERAL"
>%/</TT
></DT
><DD
><P
>The name of the current database.</P
></DD
><DT
><TT
CLASS="LITERAL"
>%~</TT
></DT
><DD
><P
>Like <TT
CLASS="LITERAL"
>%/</TT
>, but the output is <TT
CLASS="LITERAL"
>~</TT
>
         (tilde) if the database is your default database.</P
></DD
><DT
><TT
CLASS="LITERAL"
>%#</TT
></DT
><DD
><P
>          If the session user is a database superuser, then a
          <TT
CLASS="LITERAL"
>#</TT
>, otherwise a <TT
CLASS="LITERAL"
>&gt;</TT
>.
          (The expansion of this value might change during a database
          session as the result of the command <TT
CLASS="COMMAND"
>SET SESSION
          AUTHORIZATION</TT
>.)
         </P
></DD
><DT
><TT
CLASS="LITERAL"
>%R</TT
></DT
><DD
><P
>	In prompt 1 normally <TT
CLASS="LITERAL"
>=</TT
>, but <TT
CLASS="LITERAL"
>^</TT
> if
	in single-line mode, and <TT
CLASS="LITERAL"
>!</TT
> if the session is
	disconnected from the database (which can happen if
	<TT
CLASS="COMMAND"
>\connect</TT
> fails). In prompt 2 the sequence is
	replaced by <TT
CLASS="LITERAL"
>-</TT
>, <TT
CLASS="LITERAL"
>*</TT
>, a single quote,
	or a double quote, depending on whether
	<SPAN
CLASS="APPLICATION"
>psql</SPAN
> expects more input because the
	command wasn't terminated yet, because you are inside a
	<TT
CLASS="LITERAL"
>/* ... */</TT
> comment, or because you are inside
	a quote. In prompt 3 the sequence doesn't produce anything.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>%x</TT
></DT
><DD
><P
>	Transaction status: an empty string when not in a transaction
	block, or <TT
CLASS="LITERAL"
>*</TT
> when in a transaction block, or
	<TT
CLASS="LITERAL"
>!</TT
> when in a failed transaction block, or <TT
CLASS="LITERAL"
>?</TT
>
	when the transaction state is indeterminate (for example, because
	there is no connection).
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>%</TT
><VAR
CLASS="REPLACEABLE"
>digits</VAR
></DT
><DD
><P
>	The character with the indicated numeric code is substituted.
	If <VAR
CLASS="REPLACEABLE"
>digits</VAR
> starts
	with <TT
CLASS="LITERAL"
>0x</TT
> the rest of the characters are
	interpreted as hexadecimal; otherwise if the first digit is
	<TT
CLASS="LITERAL"
>0</TT
> the digits are interpreted as octal;
	otherwise the digits are read as a decimal number.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>%:</TT
><VAR
CLASS="REPLACEABLE"
>name</VAR
><TT
CLASS="LITERAL"
>:</TT
></DT
><DD
><P
>	The value of the <SPAN
CLASS="APPLICATION"
>psql</SPAN
> variable
	<VAR
CLASS="REPLACEABLE"
>name</VAR
>. See the
	section <A
HREF="app-psql.html#APP-PSQL-VARIABLES"
><I
>Variables</I
></A
> for details.
	</P
></DD
><DT
><TT
CLASS="LITERAL"
>%`</TT
><VAR
CLASS="REPLACEABLE"
>command</VAR
><TT
CLASS="LITERAL"
>`</TT
></DT
><DD
><P
>	The output of <VAR
CLASS="REPLACEABLE"
>command</VAR
>, similar to ordinary
	<SPAN
CLASS="QUOTE"
>"back-tick"</SPAN
> substitution.
	</P
></DD
></DL
></DIV
><P>

    To insert a percent sign into your prompt, write
    <TT
CLASS="LITERAL"
>%%</TT
>. The default prompts are
    <TT
CLASS="LITERAL"
>'%/%R%# '</TT
> for prompts 1 and 2, and
    <TT
CLASS="LITERAL"
>'&gt;&gt; '</TT
> for prompt 3.
    </P
><DIV
CLASS="NOTE"
><BLOCKQUOTE
CLASS="NOTE"
><P
><B
>Note: </B
>    This feature was shamelessly plagiarized from
    <SPAN
CLASS="APPLICATION"
>tcsh</SPAN
>.
    </P
></BLOCKQUOTE
></DIV
></DIV
><DIV
CLASS="REFSECT3"
><A
NAME="AEN46837"
></A
><H4
>Command-Line Editing</H4
><P
>    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> supports the <SPAN
CLASS="APPLICATION"
>Readline</SPAN
>
    library for convenient line editing and retrieval. The command
    history is stored in a file named <TT
CLASS="FILENAME"
>.psql_history</TT
>
    in your home directory and is reloaded when
    <SPAN
CLASS="APPLICATION"
>psql</SPAN
> starts up. Tab-completion is also
    supported, although the completion logic makes no claim to be an
    <ACRONYM
CLASS="ACRONYM"
>SQL</ACRONYM
> parser.  If for some reason you do not like the tab completion, you
    can turn if off by putting this in a file named
    <TT
CLASS="FILENAME"
>.inputrc</TT
> in your home directory:
</P><PRE
CLASS="PROGRAMLISTING"
>$if psql
set disable-completion on
$endif</PRE
><P>
    (This is not a <SPAN
CLASS="APPLICATION"
>psql</SPAN
> but a
    <SPAN
CLASS="APPLICATION"
>Readline</SPAN
> feature. Read its documentation
    for further details.)
    </P
></DIV
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46849"
></A
><H2
>Environment</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
><TT
CLASS="ENVAR"
>HOME</TT
></DT
><DD
><P
>      Directory for initialization file (<TT
CLASS="FILENAME"
>.psqlrc</TT
>)
      and command history file (<TT
CLASS="FILENAME"
>.psql_history</TT
>).
     </P
></DD
><DT
><TT
CLASS="ENVAR"
>PAGER</TT
></DT
><DD
><P
>      If the query results do not fit on the screen, they are piped
      through this command.  Typical values are
      <TT
CLASS="LITERAL"
>more</TT
> or <TT
CLASS="LITERAL"
>less</TT
>.  The default
      is platform-dependent.  The use of the pager can be disabled by
      using the <TT
CLASS="COMMAND"
>\pset</TT
> command.
     </P
></DD
><DT
><TT
CLASS="ENVAR"
>PGDATABASE</TT
></DT
><DD
><P
>      Default database to connect to
     </P
></DD
><DT
><TT
CLASS="ENVAR"
>PGHOST</TT
><BR><TT
CLASS="ENVAR"
>PGPORT</TT
><BR><TT
CLASS="ENVAR"
>PGUSER</TT
></DT
><DD
><P
>      Default connection parameters
     </P
></DD
><DT
><TT
CLASS="ENVAR"
>PSQL_EDITOR</TT
><BR><TT
CLASS="ENVAR"
>EDITOR</TT
><BR><TT
CLASS="ENVAR"
>VISUAL</TT
></DT
><DD
><P
>      Editor used by the <TT
CLASS="COMMAND"
>\e</TT
> command.  The variables
      are examined in the order listed; the first that is set is used.
     </P
></DD
><DT
><TT
CLASS="ENVAR"
>SHELL</TT
></DT
><DD
><P
>      Command executed by the <TT
CLASS="COMMAND"
>\!</TT
> command.
     </P
></DD
><DT
><TT
CLASS="ENVAR"
>TMPDIR</TT
></DT
><DD
><P
>      Directory for storing temporary files.  The default is
      <TT
CLASS="FILENAME"
>/tmp</TT
>.
     </P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46903"
></A
><H2
>Files</H2
><P
></P
><UL
><LI
><P
>     Before starting up, <SPAN
CLASS="APPLICATION"
>psql</SPAN
> attempts to
     read and execute commands from the file
     <TT
CLASS="FILENAME"
>$HOME/.psqlrc</TT
>. It could be used to set up
     the client or the server to taste (using the <TT
CLASS="COMMAND"
>\set
     </TT
> and <TT
CLASS="COMMAND"
>SET</TT
> commands).
    </P
></LI
><LI
><P
>     The command-line history is stored in the file
     <TT
CLASS="FILENAME"
>$HOME/.psql_history</TT
>.
    </P
></LI
></UL
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN46915"
></A
><H2
>Notes</H2
><P
></P
><UL
><LI
><P
>      In an earlier life <SPAN
CLASS="APPLICATION"
>psql</SPAN
> allowed the
      first argument of a single-letter backslash command to start
      directly after the command, without intervening whitespace. For
      compatibility this is still supported to some extent,
      but were are not going to explain the details here as this use is
      discouraged.  If you get strange messages, keep this in mind.
      For example
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\foo</KBD
>
Field separator is "oo".</PRE
><P>
      which is perhaps not what one would expect.
      </P
></LI
><LI
><P
>      <SPAN
CLASS="APPLICATION"
>psql</SPAN
> only works smoothly with servers
      of the same version. That does not mean other combinations will
      fail outright, but subtle and not-so-subtle problems might come
      up.  Backslash commands are particularly likely to fail if the
      server is of a different version.
      </P
></LI
></UL
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="APP-PSQL-EXAMPLES"
></A
><H2
>Examples</H2
><P
>  The first example shows how to spread a command over several lines of
  input. Notice the changing prompt:
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>CREATE TABLE my_table (</KBD
>
testdb(&#62; <KBD
CLASS="USERINPUT"
> first integer not null default 0,</KBD
>
testdb(&#62; <KBD
CLASS="USERINPUT"
> second text</KBD
>
testdb-&#62; <KBD
CLASS="USERINPUT"
>);</KBD
>
CREATE TABLE</PRE
><P>
  Now look at the table definition again:
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\d my_table</KBD
>
             Table "my_table"
 Attribute |  Type   |      Modifier
-----------+---------+--------------------
 first     | integer | not null default 0
 second    | text    |&#13;</PRE
><P>
  Now we change the prompt to something more interesting:
</P><PRE
CLASS="PROGRAMLISTING"
>testdb=&#62; <KBD
CLASS="USERINPUT"
>\set PROMPT1 '%n@%m %~%R%# '</KBD
>
peter@localhost testdb=&#62;</PRE
><P>
  Let's assume you have filled the table with data and want to take a
  look at it:
</P><PRE
CLASS="PROGRAMLISTING"
>peter@localhost testdb=&#62; SELECT * FROM my_table;
 first | second
-------+--------
     1 | one
     2 | two
     3 | three
     4 | four
(4 rows)&#13;</PRE
><P>
  You can make this table look differently by using the
  <TT
CLASS="COMMAND"
>\pset</TT
> command:
</P><PRE
CLASS="PROGRAMLISTING"
>peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\pset border 2</KBD
>
Border style is 2.
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>SELECT * FROM my_table;</KBD
>
+-------+--------+
| first | second |
+-------+--------+
|     1 | one    |
|     2 | two    |
|     3 | three  |
|     4 | four   |
+-------+--------+
(4 rows)

peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\pset border 0</KBD
>
Border style is 0.
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>SELECT * FROM my_table;</KBD
>
first second
----- ------
    1 one
    2 two
    3 three
    4 four
(4 rows)

peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\pset border 1</KBD
>
Border style is 1.
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\pset format unaligned</KBD
>
Output format is unaligned.
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\pset fieldsep ","</KBD
>
Field separator is ",".
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\pset tuples_only</KBD
>
Showing only tuples.
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>SELECT second, first FROM my_table;</KBD
>
one,1
two,2
three,3
four,4</PRE
><P>
  Alternatively, use the short commands:
</P><PRE
CLASS="PROGRAMLISTING"
>peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>\a \t \x</KBD
>
Output format is aligned.
Tuples only is off.
Expanded display is on.
peter@localhost testdb=&#62; <KBD
CLASS="USERINPUT"
>SELECT * FROM my_table;</KBD
>
-[ RECORD 1 ]-
first  | 1
second | one
-[ RECORD 2 ]-
first  | 2
second | two
-[ RECORD 3 ]-
first  | 3
second | three
-[ RECORD 4 ]-
first  | 4
second | four</PRE
><P>
  </P
></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="app-pgtksh.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="app-vacuumdb.html"
ACCESSKEY="N"
>Next</A
></TD
></TR
><TR
><TD
WIDTH="33%"
ALIGN="left"
VALIGN="top"
>pgtksh</TD
><TD
WIDTH="34%"
ALIGN="center"
VALIGN="top"
><A
HREF="reference-client.html"
ACCESSKEY="U"
>Up</A
></TD
><TD
WIDTH="33%"
ALIGN="right"
VALIGN="top"
><SPAN
CLASS="APPLICATION"
>vacuumdb</SPAN
></TD
></TR
></TABLE
></DIV
></BODY
></HTML
>