Disponible con licencia de Production Mapping.
Ensure that the workspace was created under the correct tablespace for proper data storage and the reduction of disk contention. Using the DBTUNE configuration that you modified previously, you can run the following script examples in pgAdmin or psql.
List the tables and corresponding tablespace.
select schemaname, tableowner, tablename, tablespace
from pg_tables
where tableowner = 'pm'
order by schemaname, tableowner, tablename, tablespace;
select schemaname, tablename, indexname, tablespace
from pg_indexes
where schemaname = 'pm'
order by schemaname, tablename, indexname, tablespace;
Si hay tablas almacenadas en un espacio de tablas incorrecto, podrá utilizar ALTER TABLE y ALTER INDEX para cambiarlo.