Re: Mostrar columnas de tabla determinada

From: Jairo Sánchez <jairosll(at)gmail(dot)com>
To: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Mostrar columnas de tabla determinada
Date: 2005-07-14 13:38:36
Message-ID: 59f843f505071406382c80eaaa@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

Hola a todos,
comando SHOW - PostgreSQL 7.4devel Documentation
----------------------------------------------------------------------------------------------
SHOW
Name
SHOW -- show the value of a run-time parameter
Synopsis
SHOW name

SHOW ALL

Inputs

name
The name of a run-time parameter. See SET for a list.

ALL
Show all current session parameters.

Description
SHOW will display the current setting of a run-time parameter. These
variables can be set using the SET statement, by editing the
postgresql.conf, through the PGOPTIONS environmental variable, or
through a command-line flag when starting the postmaster.

Even with autocommit set to off, SHOW does not start a new transaction
block. See the autocommit section of the PostgreSQL 7.4devel
Administrator's Guide for details.

Diagnostics

ERROR: Option 'name' is not recognized
Message returned if name does not stand for an existing parameter.

Examples
Show the current DateStyle setting:

SHOW DateStyle;
DateStyle
---------------------------------------
ISO with US (NonEuropean) conventions
(1 row)

Show whether the genetic query optimizer is enabled by displaying the
geqo setting:

SHOW GEQO;
geqo
------
on
(1 row)

Show all settings:

SHOW ALL;
name | setting
-------------------------------+---------------------------------------
australian_timezones | off
authentication_timeout | 60
checkpoint_segments | 3
.
.
.
wal_debug | 0
wal_sync_method | fdatasync
(94 rows)

Compatibility
The SHOW command is a PostgreSQL extension.

See Also
The function current_setting produces equivalent output. See
Miscellaneous Functions in the PostgreSQL 7.4devel User's Guide.

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Jaime Casanova 2005-07-14 14:20:51 Re: Tablas Temporales
Previous Message Pablo Duque R. 2005-07-14 13:31:36 Re: Tablas Temporales