테이블 스페이스 확인SELECT spcname, pg_tablespace_location(oid) AS locationFROM pg_tablespace; 새로운 디렉터리 생성 (OS에서 실행) sudo mkdir -p /new_disk/tablespace_datasudo chown postgres:postgres /new_disk/tablespace_datachmod 700 /new_disk/tablespace_data테이블 스페이스 생성 CREATE TABLESPACE my_tablespace LOCATION '/new_disk/tablespace_data';테이블 스페이스 이동 ALTER TABLE my_table SET TABLESPACE my_tablespace;테이블 스페이스에 저장된 테이블 목..