En PostgreSQL , ALTER TABLESPACE
ALTER TABLESPACE tablespace_name action;
Para cambiar el nombre del tablespace, ALTER TABLESPACE RENAME TO
ALTER TABLESPACE tablespace_name RENAME TO new_name;
ALTERAR PROPIETARIO DE TABLESPACE A
ALTER TABLESPACE tablespace_name OWNER TO new_owner;
ALTER TABLESPACE tablespace_name SET parameter_name = value;
Nota: ALTERAR ESPACIO DE MESA
ALTER TABLESPACE ts_primary RENAME TO ts_secondary;
verifíquelo usando el siguiente comando:
\db+
Producción:
postgres
ALTER TABLESPACE ts_secondary OWNER to raju;
Publicación traducida automáticamente
Artículo escrito por RajuKumar19 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA