2014. 12. 4. 16:20
tablespace location Work/PostgreSQL2014. 12. 4. 16:20
-- table 정보
select
*
from
pg_tables;
-- tablespace 정보
select
spcname, pg_tablespace_location(oid), pg_tablespace_size(oid)
from
pg_tablespace;
-- table 정보
select
*
from
pg_tables;
-- tablespace 정보
select
spcname, pg_tablespace_location(oid), pg_tablespace_size(oid)
from
pg_tablespace;