Exam C2090-616 All QuestionsBrowse all questions from this exam
Question 27

Which of the following statements will successfully create a table that scores index data in a different table space than the table data?

    Correct Answer: D

    To create a table that stores index data in a different table space than the table data, the correct syntax should indicate which table space holds the table data and which holds the index data. The correct statement is 'CREATE TABLE t1 (c1 INT, c2 INT) DATA IN TS1 INDEX IN TS2;' This specifies the table data space as TS1 and the index space as TS2.

Discussion
pieknyjoeOption: B

B i good

JamesBond

Correct Answer