Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam C2090-600 All Questions

View all questions & answers for the C2090-600 exam

Exam C2090-600 topic 1 question 45 discussion

Actual exam question from IBM's C2090-600
Question #: 45
Topic #: 1
[All C2090-600 Questions]

Which ALTER TABLE statements will put a table named TAB1 in "reorg-pending" state? (Choose two.)

  • A. ALTER TABLE tab1 APPEND ON
  • B. ALTER TABLE tab1 DROP COLUMN col1
  • C. ALTER TABLE tab1 ALTER COLUMN col1 SET NOT NULL
  • D. ALTER TABLE tab1 DETACH PARTITION part1 INTO tab_part1
  • E. ALTER TABLE tab1 ADD CONSTRAINT pk_tab1 PRIMARY KEY (col1)
Show Suggested Answer Hide Answer
Suggested Answer: BC 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
db2tester
5 years ago
The correct answers are then : B. ALTER TABLE tab1 DROP COLUMN col1 C. ALTER TABLE tab1 ALTER COLUMN col1 SET NOT NULL
upvoted 2 times
...
db2tester
5 years ago
Certain ALTER TABLE operations, like dropping a column, altering a column type, or altering the nullability property of a column may put the table into a reorg pending state. In this state, many types of queries cannot be run; you must perform a table reorganization before the table becomes available for some types of queries. However, even with the table in a reorg pending state, in most cases, you can still run the ALTER TABLE statement multiple times without having to run the REORG TABLE command. REFERENCE : https://www.ibm.com/support/knowledgecenter/en/SSEPGG_11.1.0/com.ibm.db2.luw.admin.dbobj.doc/doc/r0053739.html See section "Multiple ALTER TABLE operations within a single unit of work"
upvoted 1 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...