Fwd: alter table ... set tablespace - Mailing list pgsql-novice

From sergio nogueira
Subject Fwd: alter table ... set tablespace
Date
Msg-id eec843740906200521m5277d94ey602e083b6621ad5d@mail.gmail.com
Whole thread Raw
Responses Re: Fwd: alter table ... set tablespace
List pgsql-novice
Hi, i didn't understand:

dmonitor=> create table whattbs (id integer);
CREATE TABLE
dmonitor=> select tablename, tablespace from pg_tables where tablename='whattbs';
 tablename | tablespace
-----------+------------
  whattbs   |
(1 row)

dmonitor=> alter table whattbs set tablespace monitor_dat1;
ALTER TABLE
dmonitor=> select tablename, tablespace from pg_tables where tablename='whattbs';
 tablename | tablespace
-----------+------------
  whattbs   |
(1 row)

In what tablespace is the table?

Att.,
Sergio Nogueira

pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: level of recursion
Next
From: Tom Lane
Date:
Subject: Re: Fwd: alter table ... set tablespace