Вы находитесь на странице: 1из 47

IBM EXAM 000-541

DB2 9.7 DBA for Linux UNIX and Windows

Total Questions:

120

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

Question: 1.
Given the DDL shown below: CREATE TABLE tab1 (coll SMALLINT ); CREATE VIEW v1 AS SELECT coll FROMtabl WHERE coll > 25 ; CREATE VIEW V2 AS SELECT COI1 FROM v1 WITH CASCADED CHECK OPTION CREATE VIEW v3 AS SELECT coll FROM v2 WHERE coll < 100 ; Which statement will fail? A. INSERT INTO v2 VALUES (35) B. INSERT INTO v1 VALUES (5) C. INSERT INTO v3 VALUES (25) D. INSERT INTO v3 VALUES (200)

Answer: C Question: 2.
Click the Exhibit button

Given the INSERT statements shown below: INSERT INTO applicant VALUES (1 ,M 54); INSERT INTO applicant VALUES (2, 'F, 38); INSERT INTO applicant VALUES (3, M, 21); INSERT INTO applicant VALUES (4, 'F, 91); INSERT INTO applicant VALUES (5, 'C, 50); INSERT INTO applicant VALUES (6, 'C, 70); INSERT INTO applicant VALUES (7, 'C, 95); How many rows will be successfully inserted? A. 1 B. 3 C. 5 D. 7

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

Answer: C Question: 3.
Which statement is correct about informational constraints? A. An informational constraint can be used by the SQL compiler to improve the access to data and query performance. B. The database manager uses an informational constraint to enforce the uniqueness of the key during changes to the columns of the unique constraint. C. An informational constraint is a column or combination of columns that has the same properties as a unique constraint. D. An informational constraint specifies that every row that is inserted or updated in the table must conform to the definition of the table.

Answer: A Question: 4.
Click the Exhibit button.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

In the exhibit, where would the authentication of the supplied userid and password from a remote client take place? A. AIX operating system B. LDAP Server C. Kerberos Server D. "MyPlugin.so" GSS-API plug-in

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

Answer: B Question: 5.
Which two plug-in types does the DB2 database system provide? (Choose two.) A. Group retrieval B. Kerberos authentication C. Server authentication D. Encryption authentication

Answer: A C Question: 6.
What are three authorization categories in DB2? (Choose three.) A System-level B Database-level C Network-level D Object-level E Instance-level

Answer: ABD Question: 7.


What are three system and database level authorizations available with DB2? (Choose three.) A SYSMON B SYSMNT C DBCTRL D SYS ADM E DBADM

Answer: A D E Question: 8.
A DBA wants to use Label Based Access Control (LBAC) to protect Individual rows in a table. Which data type must be used to create a column to hold the necessary LBAC security data?

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

A. SYSPR0C.DB2LBACU\BEL B. SYSPR0C.DB2SECURITYU\BEL C. SYSIBM .DB2LBACLABEL D. SYSIBM .DB2SECURITYLABEL

Answer: D Question: 9.
Which administrative authority is needed to run the audit stored procedures and table functions such as the AUDIT_DELIM_EXTRACT stored procedure? A DBADM B SECADM C SQLADM D SYS ADM

Answer: B Question: 10.


How does the DB2 Server identify the list of GSS-API plug-ins it supports? A. by using the SRVCON_GSSPLUGIN_LIST database manager configuration parameter B. by using the SRVCON_GSSPLUGIN_LIST registry variable C. by using the SRVSUPP_GSSPLUGIN_LIST database manager configuration parameter D. by using the SRVSUPP_GSSPLUGIN_LIST registry variable

Answer: A Question: 11.


BOB and ALICE moved from the DEVELOPER group to the ANALYST group. As the security administrator, which two commands would remove Bob and Alice from the DEVELOPER group? (Choose two.) A. REVOKE ROLE developer FROM bob, alice B. REVOKE GROUP developer FROM bob, alice C. REVOKE ROLE developer FROM USER bob, USER alice D. REVOKE GROUP developer FROM USER bob, USER alice

Answer: A C

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

Question: 12.
Because of an application abend, a database named PAYROLL needs to be restored to approximately 9:26 am on June 1, 2009. After the database is restored from a backup image, the command shown below is executed: ROLLFORWARD DATABASE payroll TO 2009-06-01-09.26.44.609002 USING LOCAL TIME AND STOP When this command is executed, the error shown below is generated: SQL4970N Roll-forward recovery on database "PAYROLL" cannot reach the specified stop point (end-of-log or point-in-time) because of missing log file(s) on node(s) "0". Which two commands could be used to resolve this error? (Choose two.) A. ROLLFORWARD DATABASE payroll TO END OF LOGS AND STOP B. ROLLFORWARD DATABASE payroll TO 2009-06-01-09.26.44.609002 USING UTC TIME AND STOP C. ROLLFORWARD DATABASE payroll TO 2009-06-01-09.26.44.609002 USING LOCAL TIME AND STOP OVERFLOW LOG PATH /mnt/arclog D. ROLLFORWARD DATABASE payroll TO 2009-06-01-09.26.44.609002 USING UTC TIME AND STOP NORETRIEVE MISSING RECORDS

Answer: A C Question: 13.


Which two can be replicated using HADR? (Choose two.) A. database configuration changes B. CREATE TABLE ... NOT LOGGED INITIALLY operations C. Data Definition Language (DDL) statements D. LOAD operations

Answer: C D Question: 14.


Which set of procedures will be required to perform a rolling upgrade in a HADR environment? A 1. Upgrade the system where the primary database resides. 2. Issue the TAKEOVER HADR command on the primary database server. 3. Upgrade the original primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases. B 1. Upgrade the system where the standby database resides. 2. Issue the TAKEOVER HADR command on the primary database server. 3. Upgrade the original primary database.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

4. Return to the original configuration by switching the roles of the primary and standby databases. C 1. Upgrade the system where the primary database resides. 2. Issue the TAKEOVER HADR command on the primary database server. 3. Upgrade the new primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases. D 1. Upgrade the system where the standby database resides. 2. Issue the TAKEOVER HADR command on the standby database server. 3. Upgrade the original primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases.

Answer: D Question: 15.


Which HADR feature minimizes the impact of software maintenance on the Standby server? A. Configure all AUTOMATIC features. B. Configure all AUTOMATIC maintenance parameters. C. Configure AUTOMATIC maintenance and perform a rolling upgrade D. Configure AUTOMATIC maintenance and perform a roll forward.

Answer: C Question: 16.


Click the Exhibit button.

Refer to the logging configuration parameters shown in the exhibit. What will happen if there are currently 100 active log files and DB2 needs

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

to create log file 101? A. At least one application will receive a "log full" error and at least one transaction will be rolled back because the active log space is full. B. Log file 101 will go into the OVERFLOWLOGPATH directory since the active log space is full and infinite logging has been enabled. C. The database will appear to be hung since the active log space is full and the BLK_LOG_DSK_FUL parameter is set to YES. D. Log file 101 will be successfully created in the primary log path since infinite logging has been enabled. Applications will continue processing normally.

Answer: D Question: 17.


A database administrator takes a full backup of the PRODUCTS database every Sunday. During the week, two other backups are taken, one on Tuesday and one on Thursday. The PRODUCTS database is about 800 GB in size, and about 20 percent of the data is modified throughout a week. Assuming that backup times need to be kept to a minimum, which command should be used to produce the Tuesday and Thursday backup images? A. BACKUP DATABASE products TO /mnt/backup B. BACKUP DATABASE products INCREMENTAL TO /mnt/backup C. BACKUP DATABASE products TO /mnt/backup UTIL_IMPACT_PRIORITY 10 D. BACKUP DATABASE products INCREMENTAL DELTA TO /mnt/backup

Answer: D Question: 18 A
database named PAYROLL was backed up on Sunday. On Tuesday, a table space in the PAYROLL database was renamed from TBSP1 to EMPINFO_TBSP. On Thursday, the database was restored from the backup image created on Sunday. Which command must be issued to roll the renamed table space forward to the current date and time? A. ROLLFORWARD DATABASE payroll TO END OF LOGS AND STOP TABLESPACE(tbspl) B. ROLLFORWARD DATABASE payroll TO END OF LOGS AND STOP TABLESPACE(empinfo_tbsp) C. ROLLFORWARD DATABASE payroll TO END OF LOGS AND STOP TABLESPACE(tbsp 1 TO empinfo_tbsp) D. ROLLFORWARD DATABASE payroll TO END OF LOGS AND STOP TABLESPACE(tbsp 1 RENAME empinfo_tbsp)

Answer: B
For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

Question: 19.
Due to an application error, some data was deleted from a very large table residing in table space TS1. The table space was then renamed TS2 before the error was detected. Rather than try and rebuild this table, it was decided that database DB1 would be restored and then rolled forward to a point-in-time (PIT) before the delete operation took place. Unfortunately the PiT roll forward was done to a time that was too early and some critical transactions were missing when the database was brought back on-line. Which steps must be taken to ensure that the critical transactions which are currently missing from the database are correctly applied to the database and that table space TS1 is renamed TS2? A 1. Restore database DB1. 2. Roll forward to the correct point-in-time. 3. Rename TS1 to TS2. B 1. Restore table space TS1 from the DB1 backup image. 2. Roll forward to the correct point-in-time. 3. Rename table space TS1 to TS2. 4. Re-run the batch processes. C 1, Restore database DB1 2. Roll forward to end of logs. D 1. Restore table space TS1 from the DB1 backup image. 2. Roll forward to end of logs.

Answer: A Question: 20
If a non-recoverable database crashes, how can a DBA successfully restart the database if a table space is damaged and cannot complete crash recovery? A. The database must be restarted using the RESTART DATABASE command with the DROP PENDING TABLESPACES option specified. At that point, the database can be brought on-line and the damaged table space must be dropped and re-created. B. The damaged table space must be restored from the latest backup and any active transaction logs in the log path can then be applied to it using the TABLESPACE ONLINE option of the ROLLFORWARD DATABASE command. This will bring the table space on-line and synchronize it with the rest of the database. C. The damaged table space must be restored from the latest backup image. Once restored from the backup image, the RESTART DATABASE command can be issued to apply all the relevant transactions from the active logs. At that point, the database will come on-line and all table spaces will be synchronized. D. The damaged table space will require that the entire database be restored from the latest backup image because the database is non-recoverable and will

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

10

not be accessible.

Answer: A Question: 21.


A database administrator created a new database from an existing full database backup image. If the original database resided on a 64-bit AIX server and the new database was created on a different 64-bit AIX server, which two statements are correct? (Choose two.) A. Existing SQL procedures must be dropped and re-created in the new database before they can be used B. Existing packages will be copied to the new database and can be used immediately. C. Incremental backups are not allowed until a non-incremental backup is taken. D. Incremental backup images for the original database can be used to restore the new database.

Answer: A C Question: 22.


Which statement is correct when describing the AUTOCONFIGURE command? A. It calculates and displays initial values for the database manager configuration parameters and database configuration parameters for a single database, with the option of applying these values. B. It calculates and displays initial values for buffer pool sizes, the database manager configuration parameters, and database configuration parameters for a single database, with the option of applying these values. C. It calculates and displays initial values for buffer pool sizes, the database manager configuration parameters, and database configuration parameters for all databases within an instance, with the option of applying these values. D. It calculates and displays initial values for the database manager configuration parameters and database configuration parameters for all databases within an instance, with the option of applying these values.

Answer: B Question: 23.


How do you turn on Self-Tuning Memory Manager (STMM)?

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

11

A. UPDATE DB CFG FOR <database> USING SELF_TUNING_MEM ON B. db2set SELF_TUNING_MEM=ON C. UPDATE DB CFG FOR <database> USING AUTOMATIC_MEMORY ON D. db2set AUTOMATIC MEMORY=ON

Answer: A Question: 24.


Which group of memory consumers can be adjusted by the Self-Tuning Memory Manager (STMM)? A. buffer pools, lock memory, sort memory, package cache B. buffer pools, utility heap, sort memory, package cache C. buffer pools, database heap, utility heap, lock memory D. buffer pools, database heap, utility heap, package cache

Answer: A Question: 25.


You have a job scheduled to run every Saturday; the scheduler is turned off on Friday and then restarted on Monday. The job scheduled for Saturday is now a job that is scheduled in the past. Which configuration parameters will allow your Saturday job to run when the scheduler is restarted? A AUTORESTART=NO SCHED_ENABLE=ON B EXEC_EXP_TASK=NO SCHED_ENABLE=ON C AUTORESTART=YES SCHED_ENABLE=ON D EXEC_EXP_TASK=YES SCHED ENABLE=ON

Answer: D Question: 26.


You have a UTIL_IMPACT_LIM of 50 and a UTIL_IMPACT_PRIORITY of 60 for the backup utility What are the maximum amount of system resources that the backup utility can use?

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

12

A. 30% B. 40% C. 50% D. 60%

Answer: A Question: 27.


Click the Exhibit button.

Refer to the GET DB CFG output shown in the exhibit Where can the db2diag.log file be found? A. /local/db/db2inst1 /sqllib/db2dump B. /home/db2inst1 Zdb2inst1 /sqllib/db2durnp C. /home/db2inst1 Zdb2inst1 /db2dump D. /local/db/db2inst1 /db2data/db2durnp

Answer: D Question: 28.


Scheduled tasks are executed by the DB2 autonomic computing daemon (db2acd). Every five minutes the daemon checks for new or updated tasks. If a task is scheduled to run every five minutes and for some reason, the task takes seven minutes to complete, the daemon will not execute another instance of the task at the next 5 minute interval. Which minute mark will allow the next task to run? A. 5 B. 10 C. 17 D. 22

Answer: B

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

13

Question: 29.
When using SQU and JDBC applications to connect to the host DB2 database, which software license must be registered? A. IBM Data Server Driver for JDBC and SQU B. DB2 Connect C. DB2 ESE D. DB2WSE

Answer: B Question: 30.


You are unable to configure a data source using DB2 Discovery What are three reasons why this is happening? (Choose three.) A. The database has not been cataloged. B. A network failure exists between the control center client and the database C. The DISCOVER_DB parameter is disabled. D. The database does not exist. E. The DISCOVERJNST parameter is enabled.

Answer: B C D Question: 31.


What are two valid protocols that can be used with the CATALOG NODE command to establish communication with a server named SERVER1? (Choose two.) A token ring B named pipe C NetBIOS D IPv6

Answer: B D Question: 32.


What will collect information about dynamic and static SQL statements? A. MON_GET_PKG_CACHE_STMT table function B. SNAP_GET_DYN_SQL table function C. SNAPDYN_SOL administrative view D. MON GET WORKLOAD table function

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

14

Answer: A Question: 33.


What are two purposes of the db2mtrk command? (Choose two.) A. to view available memory on the system B. to view memory usage for all process currently on the system C. to view application memory usage D. to view the amount of database memory allocated to the buffer pools

Answer: C D Question: 34.


Which two tasks can DB2 Workload Management do? (Choose two.) A. Audit users, who did what and when. B. Automatically change DB2 dbm and db configuration. C. Limit the number of disruptive database activities that can run concurrently D. Stop the execution of activities that exceed defined boundaries.

Answer: C D Question: 35.


The event monitor for transactions has been replaced in DB2 9.7 with which tool? A. MON_GET_ACTIVITY_DETAILS table function B. MON_GET_WORKLOAD table function C. db2top D. db2evmonfmt

Answer: B Question: 36.


Which two DB2 commands are used to extract, format, and present diagnostic information? (Choose two.) A db2diag B db2dart

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

15

C db2exfmt D db2xprt

Answer: A B Question: 37.


Which two SOL statements are explainable statements? (Choose two.) A FETCH B INSERT C CALL D VALUES

Answer: B D Question: 38.


Which method may be used to collect deadlock information in DB2 9.7? A. DEADLOCKS event monitor B. DB2DETAILDEADLOCK event monitor C. LOCKING event monitor D. DB2_CAPTURE_LOCKTIMEOUT registry variable

Answer: C Question: 39.


Which DB2 monitoring tool command can collect data on databases, sessions, buffer pools, tables, and dynamic SQL? A db2dart B db2fodc C db2top D db2pm

Answer: C Question: 40.


Which three types of work can be defined for a Workload Management service class set? (Choose three.) A Read

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

16

B Write C Delete D Load E Unload

Answer: A B D Question: 41.


A file named db2advise.in contains the text shown below: --#SET FREQUENCY 100 SELECT COUNTO FROM employee; SELECT * FROM employee WHERE lastname='HAAS'; What does the line -#SET FREQUENCY 100 convey when this file is used as input for the Design Advisor? A. Executes the first SOL statement in the workload file 100 times. B. Executes up to 100 combinations of optimizations for both SQL statements in the workload file C. Executes both SQL statements in the workload file 100 times. D. Executes an index analysis for the first SQL statement in the workload file 100 times.

Answer: C Question: 42.


Which two actions can you perform when using Optim Database Administrator? (Choose two.) A. Schedule changes for DPF objects or configurations. B. Synchronize, copy, or merge database schema definitions between DB2 Data Servers. C. Schedule delta online backups and reorgs for different days of the week. D. Integrate remote DB2 Command execution, such as utilities, application binding and rebinding, and data loading and unloading

Answer: B D Question: 43.


You are running a LOAD utility and have not provided an exception table. What will happen if duplicates for a unique key get Inserted during the LOAD phase due to duplicates in the input file? A. LOAD will eliminate the duplicate rows from the table and give a warning

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

17

message. B. LOAD will fail and generate an error message. C. LOAD will create the exception table. D. LOAD will complete but the table being loaded will be placed in SET INTEGRITY PENDING state

Answer: A Question: 44.


Table TAB_A is already populated with a large number or rows, and you wish to insert more rows from a file named dat a.del. While these row are added, you want users to still have full access to the table in read/Write mode. Which command should you use to do this? A. IMPORT FROM data.del OF DEL INSERT INTO tab_a B. IMPORT FROM data.del OF DEL INSERT INTO tab_a ALLOW WRITE ACCESS C. LOAD FROM data.del OF DEL INSERT INTO tab_a D. LOAD FROM data.del OF DEL INSERT INTO tab a ALLOW WRITE ACCESS

Answer: B Question: 45.


Which command will reorg all indexes for a table named TABA? A. REORG TABLE taba INDEXES INPLACE B. REORG TABLE taba AND INDEXES ALL C. REORG INDEXES FOR taba D. REORG INDEXES ALL FOR TABLE taba

Answer: D Question: 46.


When are packages automatically rebound? A. When invalid packages are executed. B. When inoperative packages are executed. C. When the DB2_AUTO_REBIND configuration parameter is set to ENABLED D. When the DB2_AUTO_REBIND registry variable is set to YES.

Answer: A Question: 47.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

18

A file named db2advise.in contains the following text: -#SET FREQUENCY 100 SELECT COUNTO FROM employee; SELECT AVG(bonus), AVG(salary) FROM employee GROUP BY workdept ORDER BY workdept; Which command will cause the Design Advisor to make recommendations for a database named SAMPLE, using the information found in this file? A. db2advis -d sample -f B. db2advis -d sample -i db2advise.in C. db2advis -d sample -g D. db2advis -d sample -f db2advise.in

Answer: B Question: 48.


Tables TABLE_A and TABLE_B in database TESTDB have the same data structure (same columns with the same definitions). You wish to unload the data from the two tables into a single file In PC/IXF format. Which command(s) can be used to do this? A. EXPORT TO combined.ixf OF IXF SELECT * FROM table_a UNION ALL SELECT * FROM table_b B. EXPORT TO combined.ixf OF IXF SELECT * FROM table_a, table_b C. EXPORT TO combined.ixf OF IXF SELECT * FROM table_a: EXPORT APPEND TO combined.ixf OF IXF SELECT * FROM table_b; D. EXPORT TO combined.ixf OF IXF SELECT * FROM table a INTERSECT SELECT * FROM table b

Answer: A Question: 49.


What correctly describes an MDC table rollout cleanup for qualifying DELETE statements after the statement shown below is run? SET CURRENT MDC ROLLOUT MODE IMMEDIATE A. MDC rollout optimization is not used. The RID indexes are updated immediately during the delete process. The deleted blocks are available for reuse after the transaction commits. B. MDC rollout optimization is used. The RID indexes are updated immediately during the delete process. The deleted blocks are available for reuse after the transaction commits. C. MDC rollout optimization is not used. The DELETE statement is processed in the same way as a DELETE statement that does not qualify for rollout.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

19

D. MDC rollout optimization is used. The RID indexes are updated immediately during the delete process. The deleted blocks are available for reuse after an online REORG with the new RECLAIM EXTENTS clause.

Answer: B Question: 50.


Which two operations allow you to control the creation of the compression dictionary using the KEEPDICTIONARY/RESETDICTIONARY options? (Choose two.) A. IMPORT B. LOAD C. REORG D. TRUNCATE

Answer: B C Question: 51.


Given the following CREATE TABLE statement: CREATE TABLE applicant (id INTEGER NOT NULL PRIMARY KEY, lastname VARCHAR(50)); Which SQL statement will execute successfully? A. ALTER TABLE applicant ADD COLUMN resume XML WITH DEFAULT B. ALTER TABLE applicant ADD COLUMN resume XML(1000) WITH DEFAULT C. ALTER TABLE applicant ADD COLUMN resume XML CHECK (resume IS VALIDATED) D. ALTER TABLE applicant ADD COLUMN resume XML(1000) CHECK (resume IS VALIDATED)

Answer: C Question: 52.


Which two data types can be in-lined to enhance compression? ( Choose two.) A. LONG VARCHAR B. LOB C. GRAPHIC D. XML

Answer: B D

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

20

Question: 53.
Given a table that is already compressed, if you create a new index on that table, when will the index be compressed? A. after running the REORG command against the table and index B. immediately after running the CREATE INDEX command C. after running the ALTER INDEX... COMPRESS command D. after running the ALTER INDEX... COMPRESS command and the REORG command

Answer: B Question: 54.


Click the Exhibit button.

Refer to the exhibit for information on how tables TABA and TABB were created. What would be the number of extents allocated for each table after the successful creation of both tables? A TABA: 4 extents TABB: 40 extents B TABA: 2 extents

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

21

TABB: 20 extents C TABA: 1 extent TABB: 10 extents D TABA: 1 extent TABB: 1 extent

Answer: A Question: 55.


Which two tools can create a compression dictionary? (Choose two.) A. db2dart B. LOAD C. RESTORE D. INSPECT

Answer: B D Question: 56.


Which statement is true about using the EXPORT utility with a table that contains XML data? A. By default, XML documents will be written to the same file that contains the relational data exported unless the XMLFILE option is used. B. If the table being exported does not contain well-formed XML documents, the XMLSAVESCHEMA option must be provided with the EXPORT command used. C. By default, XML documents are written to a single, separate file, which is stored in the same location as the file that contains the relational data exported. D. If you are exporting XML documents that are greater than 32 Kb in size, you must use the XMLINSEPFILES modifier to avoid truncation.

Answer: C Question: 57.


When using table partitioning, which three operations are valid? (Choose three.) A. REORG all partitions B. DROP partition C. partition level REORG D. ATTACH partition E. DETACH partition

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

22

Answer: C D E Question: 58.


You are asked to create a new database called PRODDB where no privileges will be automatically granted to PUBLIC Which CREATE statement will accomplish this? A. CREATE DATABASE proddb GRANT PUBLIC NO B. CREATE DATABASE proddb SECURE C. CREATE DATABASE proddb REVOKE ALL FROM PUBLIC D. CREATE DATABASE proddb RESTRICTIVE

Answer: D Question: 59.


Which three commands will apply the specified action to all objects in schema PAY1 in database PRODDB? (Choose three.) A. GRANT SELECT ON TABLE payl * TO USER userl B. GRANT DROPIN ON SCHEMA payl TO USER userl C. RUNSTATS ON SCHEMA payl D REORGCHK UPDATE STATISTICS ON SCHEMA payl E. db2look-d proddb -z payl

Answer: B D E Question: 60.


Which SQL statement will execute successfully? A. CREATE TABLE customer (custid INTEGER, custinfo XML NOT NULL PRIMARY KEY) B. CREATE TABLE customer (custid INTEGER, custinfo XML(1 M) NOT NULL PRIMARY KEY) C. CREATE TABLE customer (custid INTEGER NOT NULL PRIMARY KEY, custinfo XML) D. CREATE TABLE customer (custid INTEGER NOT NULL PRIMARY KEY, custinfo XML( 10000))

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

23

Answer: C Question: 61.


You want to grant user BOB the ability to create tables in table space PLANS and to grant this privilege to others Which command would you use? A. GRANT USE OF plans TABLESPACE TO bob WITH GRANT OPTION B. GRANT USE OF TABLESPACE plans TO bob WITH GRANT OPTION C. GRANT USE AND GRANT FOR plans TABLESPACE TO bob D. GRANT USE AND GRANT FOR TABLESPACE plans TO bob

Answer: B Question: 62.


What is the purpose of a role? A. to group permissions B. to group authentications C. to group privileges D. to group passwords

Answer: C Question: 63.


Click the Exhibit button.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

24

Referring to the exhibit, which security mechanism would be used to authenticate a remote user running a db2trc command? A. CLIENT authentication B. GSS-API plugin "db2trc" C. CLIENT_ENCRYPT authentication D. SERVER ENCRYPT authentication

Answer: D Question: 64.


A DBA wants to use Label Based Access Control (LBAC) to protect Individual rows in a table. Which data type must be used to create a column to hold the necessary LBAC security data?

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

25

A. SYSPROC.DB2LBACU\BEL B. SYSPROC.DB2SECURITYU\BEL C. SYSIBM .DB2LBACLABEL D. SYSIBM .DB2SECURITYLABEL

Answer: D Question: 65.


Which two plug-in types does the DB2 database system provide? (Choose two.) A. Group retrieval B. Kerberos authentication C. Server authentication D. Encryption authentication

Answer: A C Question: 66.


Which operating system has client side Kerberos support enabled by default? A. Windows B. AIX C. Linux D. Solaris

Answer: A Question: 67.


Which statement is true about unique constraints? A. There can be only one unique constraint key per table B. There can be multiple unique constraints per table. C. A foreign key can only reference a unique constraint. D. A unique constraint is identical to a unique index.

Answer: B Question: 68.


Click the Exhibit button.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

26

What is the result after executing the SELECT statement shown below? SELECT COUNTO FROM applicant WHERE gender='C' A. 0 B. 3 C. 4 D. 7

Answer: A Question: 69.


Given the DDL shown below: CREATE TABLE tab1 (col1 CHAR(2), COI2 SMALLINT ); CREATE VIEW v1 AS SELECT col2 FROM tab1 WHERE col2 > 50 ; CREATE VIEW V2 AS SELECT COI2 FROM v1 WITH LOCAL CHECK OPTION CREATE VIEW V3 AS SELECT COI2 FROM v2 WHERE COI2 < 200 ; Which statement will fail? A. INSERT INTO v1 VALUES (5) B. INSERT INTO v2 VALUES (5) C. INSERT INTO v3 VALUES (75) D. INSERT INTO v3 VALUES (200)

Answer: B Question: 70.


For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

27

Which statement is correct about using the TAKEOVER HADR command? A. The TAKEOVER HADR command can only be issued on the standby database and the primary database is not connected to the standby database when the command is issued. B. The TAKEOVER HADR command can only be issued on the primary database and the primary database is connected to the standby database when the command is issued. C. The TAKEOVER HADR command can only be issued to switch the roles of the primary and standby databases if the databases are in peer state. D. The TAKEOVER HADR command can only be issued to switch the roles of the primary and standby databases if the standby database is in local catchup state.

Answer: C Question: 71.


Click the Exhibit button

Refer to the logging configuration parameters shown in the exhibit. If there are currently 100 active log files and there is an error with archiving log file 1. what will happen when DB2 attempts to create log file 101? A. The database will appear hung because the active log space will be full and BLK_LOG_DSK_FUL is set to YES. Once log file 1 is archived, DB2 will begin normal processing. B. DB2 will continue normal processing. It will create log file 101 while attempting to archive log file 1 up to five times. If the fifth attempt to archive log file 1 to the regular archive location fails, it will be placed in the FAILARCHPATH location until the regular archive location becomes available. C. DB2 will attempt to archive log file 1 to the regular archive location

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

28

up to five times. If log archival still fails after the fifth attempt, the application will receive a "log full" error and at least one transaction will be rolled back. D. The transaction that prompts DB2 to try and create log file 101 receives a "log full" error and is rolled back because the active log space is full. Since the physical log path is not full, the BLK_LOG_DSK_FUL parameter does not take effect, so the database does not appear hung.

Answer: B Question: 72.


A database named FINANCE must be available to users 24x7x365. Which command should be used to create a backup image of the FINANCE database without having a significant impact on running applications? A. BACKUP DATABASE finance ONLINE TO /mnt/backup UTIL_IMPACT_PRIORITY 15 B. BACKUP DATABASE finance ONLINE TO /mnt/backup PARALLELISM 5 C. BACKUP DATABASE finance ONLINE TO /mnt/backup UTIL_IMPACT_LIM 50 D. BACKUP DATABASE finance ONLINE TO /mnt/backup COMPRESS

Answer: A Question: 73
A database named FINANCE resides on an IBM System Storage DS8000 and a database administrator would like to use Flash Copy to back up the database. Which two actions must be performed before a backup image can be created in this manner? (Choose two.) A. The TOOLS catalog must be created for the instance to which the database belongs. B. DB2 Advanced Copy Services (ACS) must be installed, activated, and configured. C. The DB2 High Availability (HA) features must be available for the server. D. Workload Manager must be installed on the server.

Answer: B C Question: 74
Due to an application error, some data was deleted from a very large table residing in table space TS1. The table space was then renamed TS2 before the error was detected. Rather than try and rebuild this table, it was decided that database OBI would be restored and then rolled forward to a point-in-time (PiT) before the delete operation took place- Unfortunately the PiT roll

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

29

forward was done to a time that was too early and some critical transactions were missing when the database was brought back on-line. Which steps must be taken to ensure that the critical transactions which are currently missing from the database are correctly applied to the database and that table space TS1 is renamed TS2? A. 1. Restore database DB1. 2. Roll forward to the correct point-in-time. 3. Rename TS1 to TS2. B. 1. Restore table space TS1 from the DB1 backup image. 2 Roll forward to the correct point-in-time 3. Rename table space TS1 to TS2. 4. Re-run the batch processes. C. 1. Restore database DB1 2. Roll forward to end of logs. D. 1. Restore table space TS1 from the DB1 backup image 2. Roll forward to end of logs.

Answer: A Question: 75
A database named PAYROLL resides on an IBM System Storage DS8000 and a database administrator would like to use Flash Copy to back up the database. Which command can be used to accomplish this? A. BACKUP DATABASE payroll USE MIRROR B. BACKUP DATABASE payroll USE SNAPSHOT C. BACKUP DATABASE payroll USE XBSA D. BACKUP DATABASE payroll USE FU\SHCOPY

Answer: B Question: 76
Click the Exhibit button.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

30

Given the TCP/IP configuration shown in the exhibit, to what must the alternate server be set on the Primary, to allow Automatic Client Reroute to connect to the Standby after a HADR takeover? A. 192.168.1.1 B. 192.168.1.102 C. 192.168.2.1 D. 192.168.2.102

Answer: D Question: 77
Click the Exhibit button.

Refer to the logging configuration parameters shown in the exhibit. If the active log path was only configured to have enough space for 100 active log files, what will happen if there are currently 100 active log files and DB2 needs to create active log file 101? A. The database will appear to be hung because the BLK_LOG_DSK_FUL

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

31

configuration parameter is set to YES. Once some active log files are archived, the database will resume normal operation. B. The database will continue normal operation because infinite logging has been enabled and any logs that will not fit in the active log path will automatically be created within the OVERFLOWLOGPATH until logs in the active log path begin to be archived. C. The transaction that prompts DB2 to try and create log file 101 will receive a "log full" error because the active log space and active log path are both full. The transaction will be rolled back and it's associated application will be forced off. D. The transaction that prompts DB2 to try and create log file 101 will receive a "log full" error because the active log path is full. The transaction will be rolled back and it's associated application will be forced off.

Answer: A Question: 78
A database administrator created a new database from an existing full database backup image. If the original database resided on a 64-bit AIX server and the new database was created on a different 64-bit AIX server, which two statements are correct? (Choose two.) A. Existing SQL procedures must be dropped and re-created in the new database before they can be used. B. Existing packages will be copied to the new database and can be used immediately. C. Incremental backups are not allowed until a non-incremental backup is taken. D. Incremental backup images for the original database can be used to restore the new database.

Answer: A C Question: 79
Which set of procedures will be required to perform a rolling upgrade in a HADR environment? A 1. Upgrade the system where the primary database resides. 2. Issue the TAKEOVER HADR command on the primary database server. 3. Upgrade the original primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases B 1. Upgrade the system where the standby database resides. 2. Issue the TAKEOVER HADR command on the primary database server.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

32

3. Upgrade the original primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases C 1. Upgrade the system where the primary database resides. 2. Issue the TAKEOVER HADR command on the primary database server. 3. Upgrade the new primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases D 1. Upgrade the system where the standby database resides. 2. Issue the TAKEOVER HADR command on the standby database server. 3. Upgrade the original primary database. 4. Return to the original configuration by switching the roles of the primary and standby databases

Answer: D Question: 80.


For which two events is it recommended to execute RUNSTATS? (Choose two.) A. When a table is created. B. When row compression has been enabled. C. When LOAD with STATISTICS has been run. D. When a table is altered by adding new columns.

Answer: B C Question: 81
You are running an IMPORT utility and have specified the option COMMITCOUNT AUTOMATIC Which two reasons will cause the IMPORT utility to COMMIT? (Choose two.) A. to avoid running out of active log space B. to avoid lock escalation from row level to table level C. to avoid allocation of secondary log files D. to avoid writing uncommitted data back to the database to make room in the buffer pool

Answer: A B Question: 82
Tables TABLE_A and TABLE_B in database TESTDB have the same data structure (same columns with the same definitions). You wish to unload the data from the two tables into a single file in PC/IXF format.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

33

Which command(s) can be used to do this? A. EXPORT TO combined.ixf OF IXF SELECT * FROM table_a UNION ALL SELECT * FROM table_b B. EXPORT TO combined.ixf OF IXF SELECT * FROM table_a, table_b C. EXPORT TO combined.ixf OF IXF SELECT * FROM table_a: EXPORT APPEND TO combined.ixf OF IXF SELECT * FROM table_b; D. EXPORT TO combined.ixf OF IXF SELECT * FROM table a INTERSECT SELECT * FROM table b

Answer: A Question: 83
For which two purposes would you run the db2look tool? (Choose two.) A. To extract the data from several tables in a database, ready to be imported or loaded. B. To extract the data offline from a given page in a table and store the data in a delimited file. C. To extract the definition of objects in a database and generate DDL statements to recreate them. D. To extract the statistics information for a series of objects in a database and generate UPDATE statements to manually update the statistics

Answer: C D Question: 84
A file named db2advise.in contains the text shown below: -#SET FREQUENCY 100 SELECT COUNTO FROM employee; SELECT * FROM employee WHERE lastname='HAAS'; What does the line -#SET FREQUENCY 100 convey when this file is used as input for the Design Advisor? A. Executes the first SQL statement in the workload file 100 times. B. Executes up to 100 combinations of optimizations for both SQL statements in the workload file. C. Executes both SQL statements in the workload file 100 times. D. Executes an index analysis for the first SQL statement in the workload file 100 times.

Answer: C Question: 85

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

34

Which command will reorg all indexes for a table named TABA? A. REORG TABLE taba INDEXES INPLACE B. REORG TABLE taba AND INDEXES ALL C. REORG INDEXES FOR taba D. REORG INDEXES ALL FOR TABLE taba

Answer: D Question: 86
If this command is executed: db2advis -d sample -g What is the Design Advisor using to perform its analysis? A. A set of dynamic SQL statements that have been captured by the snapshot monitor for a database named SAMPLE. B. A set of dynamic SQL statements that are stored in a file named db2advise.in that is to be executed against a database named SAMPLE C. A set of dynamic SQL statements that have been captured by the Query Patroller for a database named SAMPLE. D. A set of dynamic SQL statements that have been stored in the SYSCAT.WORKLOADS catalog view of a database named SAMPLE.

Answer: A Question: 87
When using Optim Database Administrator to generate a change script, users are given which two EXPORT utility output formats to preserve their data when they drop a table then create a new table with the data? (Choose two.) A. IXF B. WSF C. DEL D. CSV

Answer: A C Question: 88
Visual Explain uses which explain facility to capture information? A. db2expln B. explain snapshots

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

35

C. db2exfmt D. dynamic explain

Answer: B Question: 89
Which method may be used to collect deadlock information in DB2 97? A. DEADLOCKS event monitor B. DB2DETA1LDEADLOCK event monitor C. LOCKING event monitor D. DB2_CAPTURE_LOCKTIMEOUT registry variable

Answer: C Question: 90
Which three authorizations allow you to execute db2pd? (Choose three.) A. SYSADM authority level B. SYSCTRL authority level C. SYSMON authority level D. SECADM authority level E. SYSPERF authority level

Answer: A B C Question: 91
What are three implementations for DB2 Workload Management? (Choose three.) A. workload B. service class C. threshold D. alert E. snapshot

Answer: A B C Question: 92
What are three default service classes used by Work Load Management? (Choose three.)

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

36

A. SYSDEFAULTSERVICECU\SS B. SYSDEFAULTSYSTEMCLASS C. SYSDEFAULTUSERCLASS D. SYSDEFAULTMAINTENANCECLASS E. SYSDEFAULTWORKSET

Answer: B C D Question: 93
What are two purposes of the db2mtrk command? (Choose two.) A. to view available memory on the system B. to view memory usage for all process currently on the system C. to view application memory usage D. to view the amount of database memory allocated to the buffer pools

Answer: C D Question: 94
Which DB2 tool is a Java-based, generic XML parser which produces readable text output from the data generated by an event monitor? A. db2evmonparser B. db2xmlparser C. db2eventfmt D. db2evmonfrnt

Answer: D Question: 95
Click the Exhibit button.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

37

What does the SQL in the exhibit show? A. The SQL shows the most frequently used indexes on the SYSIBM.SYSTABLES table since the last database activation. B. The SQL shows indexes on the SYSIBM.SYSTABLES table that are used for index-only access. C. THE SQL shows indexes on SYSIBM.SYSINDEXES table that have not been used since the last database activation. D. The SQL shows the most frequently used indexes on the SYSIBM.SYSINDEXES table since the last database activation

Answer: A Question: 96
What can be used to monitor static and dynamic SQL statements? A. db2top B. db2exp!n C. MON_GET_PKG_CACHE_STMT table function D. MON GET ACTIVITY DETAILS table function

Answer: C Question: 97
You are asked to create a new database called PRODDB where no privileges will be automatically granted to PUBLIC Which CREATE statement will accomplish this? A. CREATE DATABASE proddb GRANT PUBLIC NO B. CREATE DATABASE proddb SECURE

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

38

C. CREATE DATABASE proddb REVOKE ALL FROM PUBLIC D. CREATE DATABASE proddb RESTRICTIVE

Answer: D Question: 98
What is the purpose of the XMLPARSE() function? A. To retrieve an XML document from a table and convert it to a character string value. B. To produce a well-formed XML document from a character string value. C. To perform "shredding" operations that were done with the XML Extender prior to version 9.7. D. To convert XML Extender Document Type Definition files (DTD files) to pureXML schema files (XSD files)

Answer: B Question: 99
Index TAB 1X1 was created as shown below: CREATE INDEX tablxl ON tab1(col_1) Which modification to index TAB 1X1 can be performed with an ALTER INDEX statement? A. ALTER INDEX tablxl ADD COLUMN (col_2) B. ALTER INDEX tablxl CLUSTER C. ALTER INDEX tablxl COMPRESS YES D. ALTER INDEX tablxl PCTFREE 40

Answer: C Question: 100


A table named CUSTOMER has an XML column named CUSTINFO that contains several XML documents. Which SQL statement will retrieve XML documents from the CUSTOMER table and convert them to character strings? A. SELECT XMLTEXT(custinfo AS VARCHAR(350)) FROM customer B. SELECT XMLCAST(custinfo AS VARCHAR(350)) FROM customer C. SELECT XM LP AR S E (c u sti nf o AS VARCHAR(350)) FROM customer D. SELECT XM LS E RIALIZE (c u sti nf o AS VARCHAR(350)) FROM customer

Answer: D
For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

39

Question: 101
Which three table features can be used concurrently in the same table? (Choose three.) A. partitioned tables B. range-clustered tables C. primary key index D. MDC tables E. local indexes

Answer: A D E Question: 102


Which feature introduced in DB2 9.7 allows faster roll-in and roll-out of data partitions? A. individual indexes for each partition in a partitioned table B. global index for partitioned tables C. auto runstats for each partition in a partitioned table D. auto runstats for partitioned tables

Answer: A Question: 103


Click the Exhibit button.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

40

Refer to the exhibit for information on how tables TABA and TABB were created. What would be the number of extents allocated for each table after the successful creation of both tables? A TABA: 4 extents TABB: 40 extents B TABA: 2 extents TABB: 20 extents C TABA: 1 extent TABB: 10 extents D TABA: 1 extent TABB: 1 extent

Answer: A Question: 104


Which statement is true about using the EXPORT utility with a table that contains XML data? A. By default, XML documents will be written to the same file that contains the relational data exported unless the XMLFILE option is used.

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

41

B. If the table being exported does not contain well-formed XML documents, the XMLSAVESCHEMA option must be provided with the EXPORT command used. C. By default, XML documents are written to a single, separate file, which is stored in the same location as the file that contains the relational data exported. D. If you are exporting XML documents that are greater than 32 Kb in size, you must use the XMLINSEPFILES modifier to avoid truncation.

Answer: C Question: 105


Which two tools can create a compression dictionary? (Choose two.) A. db2dart B. LOAD C. RESTORE D. INSPECT

Answer: B D Question: 106


What are two available forms of compression in DB2 9.7? (Choose two.) A. column B. row C. page D. index

Answer: B D Question: 107


You want to estimate the potential index compression savings for existing indexes on a table What do you use to obtain this information? A. ADMIN_GET_INDEX_COMPRESS_INFO table function B. ADMIN_ESTIMATE_COMPRESS_INFO table function C. INSPECT D. RUNSTATS

Answer: A

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

42

Question: 108
You have a new table created with COMPRESS YES and a delimited ASCII file. You use the LOAD utility to load the data from the ASCII file into the table. When will all of the rows in the table be compressed? A. after a table REORG B. during the BUILD phase C. after running INSPECT D. during the DELETE phase

Answer: A Question: 109


You are unable to configure a data source using DB2 Discovery. What are three reasons why this is happening? (Choose three.) A. The database has not been cataloged. B. A network failure exists between the control center client and the database C. The DISCOVER_DB parameter is disabled. D. The database does not exist. E. The DISCOVERJNST parameter is enabled.

Answer: B C D Question: 110


You want to federate communication between two databases What are two key requirements? (Choose two.) A. Enable the server for federation. B. Define nicknames for the tables of a federated server. C. Use the JDBC Type 4 driver. D. Enable the client for federation.

Answer: A B Question: 111


Which driver(s) must be installed before SQU and JDBC applications can connect to DB2 databases? A. IBM Data Server Driver for JDBC and SQU B. IBM DB2 Connect Driver C. db2java jar and sqlj.zip

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

43

D. db2jcc.jar and sqlj.zip

Answer: A Question: 112


Which list of automatic maintenance parameters can have a policy defined to specify their automatic behavior? A. AUTO_DB_BACKUP, AUTO_RUNSTATS, AUTO_REORG B. AUTO_STMT_STATS, AUTO_DB_BACKUP, AUTO_RUNSTATS, AUTO_REORG C. AUTO_RUNSTATS, AUTO_REORG, AUT0_STMT_STATS D. AUTO_RUNSTATS, AUTO_STMT_STATS, AUTO_DB_BACKUP

Answer: A Question: 113


You have a job scheduled to run every Saturday; the scheduler is turned off on Friday and then restarted on Monday. The job scheduled for Saturday is now a job that is scheduled in the past. Which configuration parameters will allow your Saturday job to run when the scheduler is restarted? A. AUTORESTART=NO SCHED_ENABLE=ON B. EXEC_EXP_TASK=NO SCHED_ENABLE=ON C. AUTORESTART^YES SCHED_ENABLE=ON D. EXEC_EXP_TASK=YES SCHED ENABLE=ON

Answer: D Question: 114


You have a UTIL_IMPACT_LIM of 50 and a UTIL_!MPACT_PRIORITY of 60 for the backup utility What are the maximum amount of system resources that the backup utility can use? A. 30% B. 40% C. 50% D. 60%

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

44

Answer: A Question: 115


Which command is used to configure the administrative task scheduler to execute tasks? A. db2set D B 2_AT S_E NAB LE=YE S B. db2set D B 2_EXE C_AT S_E NAB LE=YE S C. db2set D B 2_EXE C_S C H E D U LE_E NAB LE=YE S D. db2setDB2 SCHEDULE ENABLE=YES

Answer: A Question: 116


How do you turn on Self-Tuning Memory Manager (STMM)? A. UPDATE DB CFG FOR <database> USING SELF_TUNING_MEM ON B. db2set SELF_TUNING_MEM=ON C. UPDATE DB CFG FOR <database> USING AUTOMATIC_MEMORY ON D. db2setAUTOMATIC MEMORY=ON

Answer: A Question: 117


The SELF_TUNING_MEM database configuration (db cfg) parameter is set to ON. Which three statements will cause the memory tuner to actively tune memory within the database? (Choose three.) A. One db cfg parameter is set to AUTOMATIC or the size of at least one buffer pool is set to AUTOMATIC, and the DAT ABAS E_M E M O R Y db cfg parameter is set to a numeric value or to AUTOMATIC. B. Any two of LOCKLIST, SHEAPTHRES_SHR, PCKCACHESZ are set to AUTOMATIC. C. The SORTHEAP db cfg parameter is set to AUTOMATIC. D. At least one buffer pool has its size set to AUTOMATIC. E. MAXLOCKS is set to AUTOMATIC.

Answer: A B C Question: 118

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

45

Click the Exhibit button

Referring to the exhibit, what are the minimum actions necessary to capture the maximum amount of diagnostic information in the db2diag.log file and the administration notification file? A. UPDATE DBM CFG USING NOTIFYLEVEL 4; STOP DATABASE MANAGER; START DATABASE MANAGER; B. UPDATE DBM CFG USING DI AG LEVEL 4 C. UPDATE DBM CFG USING DIAGLEVEL 3; UPDATE DBM CFG USING NOTIFYLEVEL 4; D. UPDATE DBM CFG USING NOTIFYLEVEL4

Answer: D Question: 119.


Which privilege will allow a user to extract AUDIT data into delimited files for analysis? A. AUDIT B. AU DI T_D E LI M_EXT R AC T C. CREATE AUDIT D. EXECUTE

Answer: D Question: 120.


What are three authorization categories in DB2? (Choose three.) A. System-level B. Database-level C. Network-level D. Object-level E. Instance-level

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

46

Answer: A B D

For interactive and self-paced preparation of exam 000-541, try our practice exams. Practice exams also include self assessment and reporting features! www.selftestengine.com

47

Вам также может понравиться