move TABLESPACE [message #408283] |
Mon, 15 June 2009 10:29  |
sdey
Messages: 20 Registered: May 2009
|
Junior Member |
|
|
Hi ,
The script of TABLE MSG_S is as follows-
CREATE TABLE MSG_S (
storage_id NUMBER(10) NOT NULL,
message_content CLOB NOT NULL,
storage_date DATE NOT NULL,
CONSTRAINT pk_msg_s_st_id
PRIMARY KEY (storage_id)
USING INDEX
TABLESPACE msg_ind1
)
TABLESPACE msg_data1
;
Now I want to move the table space -
sql>alter table MSG_S move TABLESPACE msg_data2;
this is working fine.
How can I move the INDEX TABLESPACE msg_ind1?
Please guide.
Regards,
Sdey.
|
|
|
|
|