From: | Raghavendra <raghavendra(dot)rao(at)enterprisedb(dot)com> |
---|---|
To: | Tony Capobianco <tcapobianco(at)prospectiv(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: null tablespace? |
Date: | 2011-12-15 18:53:51 |
Message-ID: | CA+h6AhiT+p5eGTZ0UPnYNLDavfKnnS20eL3_ktQ0bjyG8B_2AA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Its going in default tablespace i.e. base/global.
Try this query, which give information on the default tablespaces.
select spcname, case spcname when 'pg_default' then (select setting from
pg_settings where name = 'data_directory')||'/base' when 'pg_global' then
(select setting from pg_settings where name = 'data_directory')||'/global'
else spclocation end from pg_tablespace;
---
Regards,
Raghavendra
EnterpriseDB Corporation
Blog: http://raghavt.blogspot.com/
On Fri, Dec 16, 2011 at 12:11 AM, Tony Capobianco <
tcapobianco(at)prospectiv(dot)com> wrote:
> I have not defined my default tablespace:
>
> show default_tablespace ;
> default_tablespace
> --------------------
>
>
> However, I have tables with null tablespaces values in pg_tables:
>
> pg_dw=# select * from pg_tables where tablename = 'source_prev';
> schemaname | tablename | tableowner | tablespace | hasindexes
> | hasrules | hastriggers
>
> ------------+-----------------------+------------+------------+------------+----------+-------------
> support | source_prev | jspool | | t
> | f | f
>
>
> We have defined out search_path correctly, so what tablespace is this
> table stored in?
>
> Thanks!
>
>
> --
> Sent via pgsql-general mailing list (pgsql-general(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-general
>
From | Date | Subject | |
---|---|---|---|
Next Message | Rick Pufky | 2011-12-15 18:59:10 | recovery_target_timeline and multiple slave behavior when master fails |
Previous Message | Kirill Simonov | 2011-12-15 18:52:00 | Re: Logical Aggregate Functions (eg ANY()) |