IBM C2090-600 Exam Practice Questions (P. 5)
- Full Access (60 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #21
Which of the following SQL statements will list table spaces whose utilization is greater than 95% and may potentially fill, returning an error?
- ASELECT tbsp_name, tbsp_utilization_percent FROM TABLE(sysproc.mon_tbsp_utilization()) AS t WHERE tbsp_utilization_percent > 95 AND tbsp_auto_resize_enabled = 1;
- BSELECT tbsp_name, tbsp_utilization_percent FROM syscat.mon_tbsp_utilization WHERE tbsp_utilization_percent > 95 AND tbsp_auto_resize_enabled = 0;
- CSELECT tbsp_name, tbsp_utilization_percent FROM syscat.mon_tbsp_utilization WHERE tbsp_utilization_percent > 95 AND tbsp_auto_resize_enabled = 1;
- DSELECT tbsp_name, tbsp_utilization_percent FROM sysibmadm.mon_tbsp_utilization WHERE tbsp_utilization_percent > 95
Correct Answer:
C
C
send
light_mode
delete
Question #22
When operating in NPS compatibility mode, which of the following are limitations for using a routine written in NZPLSQL? (Choose two.)
- AThe routine cannot contain comments.
- BThe routine must return either an integer or a null.
- CThe routine must be cross-compatible with Oracle PL/SQL syntax rules.
- DThe routine cannot contain argument lists or variable arguments (varargs).
- EThe routine must be generated with IBM Database Conversion Workbench (DCW).
Correct Answer:
BD
Reference:
https://www.ibm.com/support/knowledgecenter/en/SSEPGG_11.1.0/com.ibm.db2.luw.apdv.porting.doc/doc/r_sql_compat_nzplsql.html/
BD
Reference:
https://www.ibm.com/support/knowledgecenter/en/SSEPGG_11.1.0/com.ibm.db2.luw.apdv.porting.doc/doc/r_sql_compat_nzplsql.html/
send
light_mode
delete
Question #23
Which of the following enables the user to connect to the HADR standby database and execute select statements?
- ADB2_HADR_ROS
- BHADR_SPOOL_LIMIT
- CDB2_HADR_SOSNDBUF
- DDB2_HADR_PEER_WAIT_LIMIT
Correct Answer:
A
Reference:
https://www.ibm.com/developerworks/data/library/techarticle/dm-1205hadrstandby/
A
Reference:
https://www.ibm.com/developerworks/data/library/techarticle/dm-1205hadrstandby/
send
light_mode
delete
Question #24
The DBA is concerned about a new application potentially corrupting a set of tables in table space TS1 in database DB1. TAB1 is a table in TS1. The DBA performs the following commands before running the application. The first QUIESCE completes at time "pit".
BACKUP DATABASE DB1 TABLESPACE (TS1) ONLINE
QUIESCE TABLESPACES FOR TABLE tab1 EXCLUSIVE
QUIESCE TABLESPACES FOR TABLE tab1 RESET
Which of the following is TRUE?
BACKUP DATABASE DB1 TABLESPACE (TS1) ONLINE
QUIESCE TABLESPACES FOR TABLE tab1 EXCLUSIVE
QUIESCE TABLESPACES FOR TABLE tab1 RESET
Which of the following is TRUE?
- AThe QUIESCE EXCLUSIVE is recorded in the History File once the QUIESCE RESET completes.
- BOnce the first QUIESCE completes, there are no running transactions involving tab1, but there might be running transactions against other tables in TS1.
- CAfter application corruption, the DBA restores a backup of TS1 and issues ROLLFORWARD DATABASE TO pit AND COMPLETE TABLESPACE (ts1) ONLINE. There might be some uncommitted data in TS1.
- DAfter application corruption, the DBA restores a backup of TS1 and issues ROLLFORWARD DATABASE TO pit AND COMPLETE TABLESPACE (ts1)
Correct Answer:
D
D
send
light_mode
delete
Question #25
When the DB2_WORKLOAD registry variable is assigned the value ANALYTICS and then a new database is created, what happens? (Choose two.)
- AThe PAGESIZE database configuration parameter is set to 32K.
- BThe AUTO_REORG database configuration parameter is set to NO.
- CThe DFT_EXTENT_SZ database configuration parameter is set to 8.
- DThe DFT_TABLE_ORG database configuration parameter is set to COLUMN.
- EThe INTRA_PARALLEL database manager configuration parameter is set to NO.
Correct Answer:
DE
DE
send
light_mode
delete
All Pages