ver una tipo tabla saber postgres listar las estructura datos consultar como columnas campos atributos postgresql primary-key

una - Cambiar clave principal en la tabla de PostgreSQL



ver atributos de una tabla postgres (1)

He pasado un tiempo y finalmente se me ocurrió una solución de trabajo.

Lo publicaré aquí para futuras referencias.

Solución

En primer lugar, tiene tres tablas ( foo_table , bar_table , baz_table ) que apuntan a su tabla de users por medio de claves externas (llamadas user_id en todos los casos). Deberá reemplazar los ID almacenados en esas columnas de id a another_id . Así es como puedes hacerlo:

-- We are dropping the foreign key constraint on dependant table (in other case it will prevent us from updating the values) ALTER TABLE foo_table DROP CONSTRAINT fk_e52ffdeea76ed395; -- Then, we''re swapping values in foreign key column from id to another_id UPDATE foo_table T SET user_id = (SELECT another_id FROM users WHERE id = T.user_id); -- And finally we''re creating new foreign key constraint pointing to the another_id instead of id ALTER TABLE foo_table ADD CONSTRAINT fk_e52ffdeea76ed395 FOREIGN KEY (user_id) REFERENCES users (another_id) ON DELETE CASCADE;

Deberá repetir las consultas anteriores para cada tabla dependiente.

Después de eso, todas las tablas dependientes apuntarán a su nueva columna another_id .

Al final solo necesitaremos reemplazar la clave principal:

-- 1. Dropping the original primary key ALTER TABLE users DROP CONSTRAINT users_pkey -- 2. Renaming existing index for another_id (optional) ALTER INDEX uniq_1483a5e93414710b RENAME TO users_pkey -- 3. Creating new primary key using existing index for another_id ALTER TABLE users ADD PRIMARY KEY USING INDEX users_pkey -- 4. Creating index for old id column (optional) CREATE UNIQUE INDEX users_id ON users (id) -- 5. You can drop the original sequence generator if you won''t need it DROP SEQUENCE users_id_seq

Incluso puede eliminar la columna de id original si lo desea.

Espero que ayude a alguien.

Tengo una tabla de users en mi base de datos PostgreSQL 9.3.6 con dos columnas: id y another_id . El id es una clave principal, el another_id es solo otra columna de entero con una restricción única.

Hay otras tablas que hacen referencia a los usuarios por clave principal.

Aquí está la descripción de la tabla de users :

Table "public.users" Column | Type | Modifiers | Storage | Stats target | Description ----------------------+--------------------------------+----------------------------------------+---------+--------------+------------- id | integer | not null | plain | | another_id | integer | not null | plain | | Indexes: "users_pkey" PRIMARY KEY, btree (id) "uniq_1483a5e93414710b" UNIQUE, btree (another_id) Referenced by: TABLE "foo_table" CONSTRAINT "fk_4affc6e5a76ed395" FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE TABLE "bar_table" CONSTRAINT "fk_72936b1da76ed395" FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE TABLE "baz_table" CONSTRAINT "fk_83adbaf0a76ed395" FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE

Aquí está la descripción foo_table :

Table "public.foo_table" Column | Type | Modifiers | Storage | Stats target | Description --------------+--------------------------------+-----------------------------------------------+----------+--------------+------------- id | integer | not null | plain | | user_id | integer | | plain | | Indexes: "foo_table_pkey" PRIMARY KEY, btree (id) "idx_e52ffdeea76ed395" btree (user_id) Foreign-key constraints: "fk_e52ffdeea76ed395" FOREIGN KEY (user_id) REFERENCES users(id) ON DELETE CASCADE

¿Cómo reemplazo la clave principal en la tabla PostgreSQL de la columna id columna another_id y mantengo la integridad de los datos?