Nueva PostgreSQL (desde 8,3 acuerdo con documentos) puede utilizar "incluidos los índices":
# select version();
version
-------------------------------------------------------------------------------------------------
PostgreSQL 8.3.7 on x86_64-pc-linux-gnu, compiled by GCC cc (GCC) 4.2.4 (Ubuntu 4.2.4-1ubuntu3)
(1 row)
Como se puede ver Estoy probando en 8.3.
Ahora, vamos a crear la tabla:
# create table x1 (id serial primary key, x text unique);
NOTICE: CREATE TABLE will create implicit sequence "x1_id_seq" for serial column "x1.id"
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index "x1_pkey" for table "x1"
NOTICE: CREATE TABLE/UNIQUE will create implicit index "x1_x_key" for table "x1"
CREATE TABLE
Y ver cómo se ve:
# \d x1
Table "public.x1"
Column | Type | Modifiers
--------+---------+-------------------------------------------------
id | integer | not null default nextval('x1_id_seq'::regclass)
x | text |
Indexes:
"x1_pkey" PRIMARY KEY, btree (id)
"x1_x_key" UNIQUE, btree (x)
Ahora podemos copiar la estructura:
# create table x2 (like x1 INCLUDING DEFAULTS INCLUDING CONSTRAINTS INCLUDING INDEXES);
NOTICE: CREATE TABLE/PRIMARY KEY will create implicit index "x2_pkey" for table "x2"
NOTICE: CREATE TABLE/UNIQUE will create implicit index "x2_x_key" for table "x2"
CREATE TABLE
Y comprobar la estructura:
# \d x2
Table "public.x2"
Column | Type | Modifiers
--------+---------+-------------------------------------------------
id | integer | not null default nextval('x1_id_seq'::regclass)
x | text |
Indexes:
"x2_pkey" PRIMARY KEY, btree (id)
"x2_x_key" UNIQUE, btree (x)
Si está utilizando PostgreSQL pre-8.3, puede simplemente usar pg_dump con la opción "-t" para especificar el 1 de mesa, mesa de cambio de nombre en el basurero, y cargarlo de nuevo:
=> pg_dump -t x2 | sed 's/x2/x3/g' | psql
SET
SET
SET
SET
SET
SET
SET
SET
CREATE TABLE
ALTER TABLE
ALTER TABLE
ALTER TABLE
Y ahora la tabla es:
# \d x3
Table "public.x3"
Column | Type | Modifiers
--------+---------+-------------------------------------------------
id | integer | not null default nextval('x1_id_seq'::regclass)
x | text |
Indexes:
"x3_pkey" PRIMARY KEY, btree (id)
"x3_x_key" UNIQUE, btree (x)
No hay "ÍNDICES INCLUIDOS" en postgres. – Rory
¿Qué versión estás usando? Lea el último documento, está allí – WolfmanDragon
con pg9.X, cuando se usa "INCLUYENDO RESTRICCIONES" (no "INCLUYENDO ÍNDICES"), la secuencia de teclas principal se compartirá entre las dos tablas (!). –