Re: Moving TABLES to another TABLESPACE

From: DavidJRoth <davidjroth_at_aol.com>
Date: 22 Jan 1995 09:55:09 -0500
Message-ID: <3ftrkd$jhd_at_newsbf02.news.aol.com>


There is no way to MOVE a table from one tablespace to another, but it is easy to make a COPY and then delete the original.

Try;

RENAME tablename to tmpname;

CREATE TABLE tablename
AS SELECT * FROM tmpname
tablespace new_tablespace;

DROP table tmpname;

Dave Roth
Carty Mailloux Consulting
(508)392-1300 Received on Sun Jan 22 1995 - 15:55:09 CET

Original text of this message