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 21 discussion

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

Which of the following SQL statements will list table spaces whose utilization is greater than 95% and may potentially fill, returning an error?

  • A. SELECT tbsp_name, tbsp_utilization_percent FROM TABLE(sysproc.mon_tbsp_utilization()) AS t WHERE tbsp_utilization_percent > 95 AND tbsp_auto_resize_enabled = 1;
  • B. SELECT tbsp_name, tbsp_utilization_percent FROM syscat.mon_tbsp_utilization WHERE tbsp_utilization_percent > 95 AND tbsp_auto_resize_enabled = 0;
  • C. SELECT tbsp_name, tbsp_utilization_percent FROM syscat.mon_tbsp_utilization WHERE tbsp_utilization_percent > 95 AND tbsp_auto_resize_enabled = 1;
  • D. SELECT tbsp_name, tbsp_utilization_percent FROM sysibmadm.mon_tbsp_utilization WHERE tbsp_utilization_percent > 95
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

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, 1 month ago
The answer C is wrong. If you run the query, you will get the error : SQL0204N "SYSCAT.MON_TBSP_UTILIZATION" is an undefined name. SQLSTATE=42704. The correct answer is D (SYSIBMADM.MON_TBSP_UTILIZATION)
upvoted 3 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 ...