#27. You issue these queries to obtain information about the REGIONS table: SQL> SELECT segment_name, tablespace_name 2> FROM user_segments 3> WHERE segment_name = 'REGIONS';
SEGMENT_NAME TABLESPACE_NAME
REGIONS SAMPLE SQL> SELECT constraint_name, constraint_type 2> FROM USER CONSTRAINTS 3> WHERE table_name = ‘REGIONS’;
CONSTRAINT_NAME C
REGION_ID_NN C
REG_ID P SQL> SELECT index_named 2> FROM USER indexes 3> WHERE table_name = ‘REGIONS’;
INDEX_NAME REG_ID_PK You then issue this command to move the REGIONS table: ALTER TABLE regions MOVE TABLESPACE user_data;
What else must you do to complete the move of the REGIONS table?
Show comments for this question (1)
Add comments
Link to this question
|