BrainDumps.C Q&A

Size: px
Start display at page:

Download "BrainDumps.C Q&A"

Transcription

1 BrainDumps.C Q&A Number: C Passing Score: 800 Time Limit: 120 min File Version: Hi all, I've finished this one on 1st May. This dump is valid and this is complete. 2. Every multiple choice question was exactly the same. 3. Great dump, passed with high marks 96%, 4. I think it is more reliable source of preparation in short period of time. 5. Allhamdulliah,I'm certified now.

2 Exam A QUESTION 1 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=NOSCHED_ENABLE=ON B. EXEC_EXP_TASK=NOSCHED_ENABLE=ON C. AUTORESTART=YESSCHED_ENABLE=ON D. EXEC_EXP_TASK=YESSCHED ENABLE=ON Correct Answer: D /Reference: QUESTION 2 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 Correct Answer: B /Reference: QUESTION 3 Which two DB2 commands are used to extract, format, and present diagnostic information? (Choose two.) A. db2diag B. db2dart C. db2exfmt D. db2xprt B /Reference: QUESTION 4 Which two SOL statements are explainable statements? (Choose two.) A. FETCH B. INSERT C. CALL D. VALUES Correct Answer: BD

3 /Reference: QUESTION 5 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 Correct Answer: C /Reference: QUESTION 6 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 Correct Answer: C /Reference: QUESTION 7 Which three types of work can be defined for a Workload Management service class set? (Choose three.) A. Read B. Write C. Delete D. Load E. Unload BD /Reference:

4 QUESTION 8 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. Correct Answer: C /Reference: QUESTION 9 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 Correct Answer: BD /Reference: QUESTION 10 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 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 /Reference: QUESTION 11 Table TAB_A is already populated with a large number or rows, and you wish to insert more rows from a file named data.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

5 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 /Reference: QUESTION 12 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 Correct Answer: D /Reference: QUESTION 13 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. /Reference: QUESTION 14 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 Correct Answer: B

6 /Reference: QUESTION 15 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 TOcombined.ixf OF IXF SELECT * FROM table_b; D. EXPORT TO combined.ixf OF IXF SELECT * FROM table a INTERSECT SELECT * FROM table b /Reference: QUESTION 16 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. 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 newreclaim EXTENTS clause. Correct Answer: B /Reference: QUESTION 17 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 Correct Answer: BC /Reference:

7 QUESTION 18 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) Correct Answer: C /Reference: QUESTION 19 Which two data types can be in-lined to enhance compression? (Choose two.) A. LONG VARCHAR B. LOB C. GRAPHIC D. XML Correct Answer: BD /Reference: QUESTION 20 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 Correct Answer: B /Reference: QUESTION 21 Click the Exhibit button.

8 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 extentstabb: 40 extents B. TABA: 2 extentstabb: 20 extents C. TABA: 1 extenttabb: 10 extents D. TABA: 1 extenttabb: 1 extent /Reference: QUESTION 22 Which two tools can create a compression dictionary? (Choose two.) A. db2dart B. LOAD C. RESTORE D. INSPECT Correct Answer: BD /Reference:

9 QUESTION 23 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, thexmlsaveschema 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. Correct Answer: C /Reference: QUESTION 24 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 Correct Answer: CDE /Reference: QUESTION 25 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 Correct Answer: D /Reference: QUESTION 26 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 payld REORGCHK UPDATE STATISTICS ON SCHEMA payl D. db2look-d proddb -z payl

10 Correct Answer: BD /Reference: QUESTION 27 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)) Correct Answer: C /Reference: QUESTION 28 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 Correct Answer: B /Reference: QUESTION 29 What is the purpose of a role? A. to group permissions B. to group authentications C. to group privileges D. to group passwords Correct Answer: C /Reference: QUESTION 30 Click the Exhibit button. Referring to the exhibit, which security mechanism would be used to authenticate a remote user running a db2trc command? A. CLIENT authentication

11 B. GSS-API plugin "db2trc" C. CLIENT_ENCRYPT authentication D. SERVER ENCRYPT authentication Correct Answer: D /Reference: QUESTION 31 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? A. SYSPROC.DB2LBACU\BEL B. SYSPROC.DB2SECURITYU\BEL C. SYSIBM.DB2LBACLABEL D. SYSIBM.DB2SECURITYLABEL Correct Answer: D /Reference: QUESTION 32 Which operating system has client side Kerberos support enabled by default? A. Windows B. AIX C. Linux D. Solaris /Reference: QUESTION 33 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. Correct Answer: B /Reference: QUESTION 34 Click the Exhibit button.

12 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 /Reference: QUESTION 35 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. Correct Answer: C /Reference: QUESTION 36

13 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 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, theblk_log_dsk_ful parameter does not take effect, so the database does not appear hung. Correct Answer: B /Reference: QUESTION 37 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 /Reference: QUESTION 38 A database named FINANCE resides on an IBM System Storage DS8000 and a database administrator

14 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. Correct Answer: BC /Reference: QUESTION 39 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 Correct Answer: B /Reference: QUESTION 40 Click the Exhibit button. 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 B C D Correct Answer: D

15 /Reference: QUESTION 41 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 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. /Reference: QUESTION 42 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.

16 C /Reference: QUESTION 43 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. Correct Answer: BC /Reference: QUESTION 44 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 B /Reference: QUESTION 45 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 generateupdate statements to manually update the statistics Correct Answer: CD

17 /Reference: QUESTION 46 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. Correct Answer: C /Reference: QUESTION 47 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. /Reference: QUESTION 48 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 C

18 /Reference: QUESTION 49 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 Correct Answer: C /Reference: QUESTION 50 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 BC /Reference: QUESTION 51 What are three implementations for DB2 Workload Management? (Choose three.) A. workload B. service class C. threshold D. alert E. snapshot BC /Reference: QUESTION 52 What are three default service classes used by Work Load Management? (Choose three.) A. SYSDEFAULTSERVICECU\SS B. SYSDEFAULTSYSTEMCLASS C. SYSDEFAULTUSERCLASS D. SYSDEFAULTMAINTENANCECLASS E. SYSDEFAULTWORKSET

19 Correct Answer: BCD /Reference: QUESTION 53 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 Correct Answer: D /Reference: QUESTION 54 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 Correct Answer: C /Reference: QUESTION 55 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 Correct Answer: D /Reference: QUESTION 56 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

20 C. auto runstats for each partition in a partitioned table D. auto runstats for partitioned tables /Reference: QUESTION 57 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 /Reference: QUESTION 58 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 C /Reference: QUESTION 59 Because of an application abend, a database named PAYROLL needs to be restored to approximately 9:26 am on June 1, After the database is restored from a backup image, the command shown below is executed: ROLLFORWARD DATABASE payroll TO 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-oflog 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 USING UTC TIME AND STOP C. ROLLFORWARD DATABASE payroll TO USING LOCAL TIMEAND STOP OVERFLOW LOG PATH /mnt/arclog

21 D. ROLLFORWARD DATABASE payroll TO USING UTC TIMEAND STOP NORETRIEVE MISSING RECORDS C /Reference: QUESTION 60 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 Correct Answer: CD /Reference: QUESTION 61 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 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. Correct Answer: D

22 /Reference: QUESTION 62 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 1TO empinfo_tbsp) D. ROLLFORWARD DATABASE payroll TO END OF LOGS AND STOP TABLESPACE(tbsp 1RENAME empinfo_tbsp) Correct Answer: B /Reference: QUESTION 63 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. Correct Answer: B /Reference: QUESTION 64 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

23 C. UPDATE DB CFG FOR <database> USING AUTOMATIC_MEMORY ON D. db2set AUTOMATIC MEMORY=ON /Reference: QUESTION 65 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 /Reference: QUESTION 66 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. B /Reference: QUESTION 67 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 /Reference: QUESTION 68 The SELF_TUNING_MEM database configuration (db cfg) parameter is set to ON.

24 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. BC /Reference: QUESTION 69 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) Correct Answer: C /Reference: QUESTION 70 Click the Exhibit button. 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 Correct Answer: B /Reference: QUESTION 71 What are three system and database level authorizations available with DB2? (Choose three.)

25 A. SYSMON B. SYSMNT C. DBCTRL D. SYS ADM E. DBADM DE /Reference: QUESTION 72 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? A. SYSPR0C.DB2LBACU\BEL B. SYSPR0C.DB2SECURITYU\BEL C. SYSIBM.DB2LBACLABEL D. SYSIBM.DB2SECURITYLABEL Correct Answer: D /Reference: QUESTION 73 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 /Reference: QUESTION 74 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? A. 30% B. 40% C. 50% D. 60% /Reference:

26 QUESTION 75 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 Correct Answer: D /Reference: QUESTION 76 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 Correct Answer: B /Reference: QUESTION 77 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 Correct Answer: B

27 /Reference: QUESTION 78 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. Correct Answer: BCD /Reference: QUESTION 79 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 Correct Answer: BD /Reference: QUESTION 80 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 /Reference: QUESTION 81 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

28 C. to view application memory usage D. to view the amount of database memory allocated to the buffer pools Correct Answer: CD /Reference: QUESTION 82 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. Correct Answer: CD /Reference:

IBM Exam C DB2 9.7 DBA for Linux UNIX and Windows Version: 6.1 [ Total Questions: 102 ]

IBM Exam C DB2 9.7 DBA for Linux UNIX and Windows Version: 6.1 [ Total Questions: 102 ] s@lm@n IBM Exam C2090-541 DB2 9.7 DBA for Linux UNIX and Windows Version: 6.1 [ Total Questions: 102 ] Question No : 1 Which list of automatic maintenance parameters can have a policy defined to specify

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST \ http://www.pass4test.com We offer free update service for one year Exam : A2090-541 Title : Assessment: DB2 9.7 DBA for Linux UNIX and Windows Vendors : IBM Version : DEMO Get Latest & Valid

More information

Vendor: IBM. Exam Code: C Exam Name: DB DBA for Linux UNIX and Windows. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: DB DBA for Linux UNIX and Windows. Version: Demo Vendor: IBM Exam Code: C2090-611 Exam Name: DB2 10.1 DBA for Linux UNIX and Windows Version: Demo QUESTION 1 Due to a hardware failure, it appears that there may be some corruption in database DB_1 as

More information

Vendor: IBM. Exam Code: Exam Name: DB DBA for Linux, UNIX, and Windows. Version: Demo

Vendor: IBM. Exam Code: Exam Name: DB DBA for Linux, UNIX, and Windows. Version: Demo Vendor: IBM Exam Code: 000-611 Exam Name: DB2 10.1 DBA for Linux, UNIX, and Windows Version: Demo QUESTION 1 Due to a hardware failure, it appears that there may be some corruption in database DB_1 as

More information

A Examcollection.Premium.Exam.54q

A Examcollection.Premium.Exam.54q A2090-544.Examcollection.Premium.Exam.54q Number: A2090-544 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: A2090-544 Exam Name: Assessment: DB2 9.7 Advanced

More information

IBM EXAM QUESTIONS & ANSWERS

IBM EXAM QUESTIONS & ANSWERS IBM 000-611 EXAM QUESTIONS & ANSWERS Number: 000-611 Passing Score: 800 Time Limit: 120 min File Version: 23.3 http://www.gratisexam.com/ IBM 000-611 EXAM QUESTIONS & ANSWERS Exam Name: DB2 10.1 DBA for

More information

DB2 9.7 DBA for Linux UNIX and Windows Exam.

DB2 9.7 DBA for Linux UNIX and Windows Exam. IBM 000-541 DB2 9.7 DBA for Linux UNIX and Windows Exam TYPE: DEMO http://www.examskey.com/000-541.html Examskey IBM 000-541 exam demo product is here for you to test the quality of the product. This IBM

More information

IBM DB2 courses, Universidad Cenfotec

IBM DB2 courses, Universidad Cenfotec IBM DB2 courses, Universidad Cenfotec Contents Summary... 2 Database Management (Information Management) course plan... 3 DB2 SQL Workshop... 4 DB2 SQL Workshop for Experienced Users... 5 DB2 9 Database

More information

Index. NOTE: Boldface numbers indicate illustrations; t indicates a table 207

Index. NOTE: Boldface numbers indicate illustrations; t indicates a table 207 A access control, 175 180 authentication in, 176 179 authorities/authorizations in, 179, 180 privileges in, 179, 180 Administrator, IBM Certified Database Administrator DB2 9 for Linux, UNIX, Windows,

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 000-611 Title : DB2 10.1 DBA for Linux, UNIX, and Windows Vendors : IBM

More information

D09 Repeated in D15 DB2 Autonomics: Implementation and Exploitation

D09 Repeated in D15 DB2 Autonomics: Implementation and Exploitation D09 Repeated in D15 DB2 Autonomics: Implementation and Exploitation Philip K. Gunning Gunning Technology Solutions, LLC 4 Oct 2006 11:00 a.m. 12:00 p.m. Repeated 5 Oct 2006, 10:30 a.m. 11:30 a.m. Platform:

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : A2090-731 Title : Assessment: DB2 9 DBA for LUW-Assessment Version : DEMO 1 / 8 1.Given the following CREATE TABLE statement: CREATE TABLE employee ( empno CHAR(6) NOT NULL, firstnmevarchar(12),

More information

How Viper2 Can Help You!

How Viper2 Can Help You! How Viper2 Can Help You! December 6, 2007 Matt Emmerton DB2 Performance and Solutions Development IBM Toronto Laboratory memmerto@ca.ibm.com How Can Viper2 Help DBAs? By putting intelligence and automation

More information

IBM DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs

IBM DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs IBM DB2 LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs Day(s): 5 Course Code: CL442G Overview Learn how to tune for optimum the IBM DB2 9 for Linux, UNIX, and Windows relational

More information

IBM Exam DB Advanced DBA for Linux UNIX and Windows Version: 6.0 [ Total Questions: 108 ]

IBM Exam DB Advanced DBA for Linux UNIX and Windows Version: 6.0 [ Total Questions: 108 ] s@lm@n IBM Exam 000-614 DB2 10.1 Advanced DBA for Linux UNIX and Windows Version: 6.0 [ Total Questions: 108 ] Topic 1, Volume A IBM 000-614 : Practice Test Question No : 1 - (Topic 1) Which constraints

More information

C Examcollection.Premium.Exam.58q

C Examcollection.Premium.Exam.58q C2090-610.Examcollection.Premium.Exam.58q Number: C2090-610 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: C2090-610 Exam Name: DB2 10.1 Fundamentals Visualexams

More information

DB2 9.7 Advanced DBA for LUW

DB2 9.7 Advanced DBA for LUW 000 544 DB2 9.7 Advanced DBA for LUW Version 3.5 QUESTION NO: 1 An employee is not able to connect to the PRODDB database using the correct user ID and password. The TCP/IP protocol is running normally;

More information

B. UPDATE DB CFG FOR sample USING LOOCKLIST 8192 AUTOMATIC IMMEDIATE

B. UPDATE DB CFG FOR sample USING LOOCKLIST 8192 AUTOMATIC IMMEDIATE Volume: 60 Questions Question No: 1 Assuming no database connections exist, which of the following will dynamically change the LOCKLIST database configuration parameter for a database named SAMPLE to AUTOMATIC?

More information

Testpassport.

Testpassport. Testpassport http://www.testpassport.cn Exam : C2090-614 Title : DB2 10.1 Advanced DBA for Linux UNIX and Windows Version : Demo 1 / 5 1.Which constraints are used to tell the DB2 Optimizer to consider

More information

Exam Name: DB2 9 Database Admin for Linux, UNIX, and

Exam Name: DB2 9 Database Admin for Linux, UNIX, and Exam Code: 000-736 Exam Name: DB2 9 Database Admin for Linux, UNIX, and Windows Upgrade Vendor: IBM Version: DEMO Part: A 1: A database administrator wishes to enable automatic table and index reorganization.

More information

IBM DB Advanced DBA for Linux UNIX and Windows.

IBM DB Advanced DBA for Linux UNIX and Windows. IBM 000-614 DB2 10.1 Advanced DBA for Linux UNIX and Windows http://killexams.com/exam-detail/000-614 QUESTION: 98 Which Workload Manager (WLM) objects can the COLLECT ACTIVITY DATA clause be used with?

More information

Exam Questions C

Exam Questions C Exam Questions C2090-614 DB2 10.1 Advanced DBA for Linux UNIX and Windows (C2090-614) https://www.2passeasy.com/dumps/c2090-614/ 1.Which constraints are used to tell the DB2 Optimizer to consider business

More information

IBM Exam A DB2 9.7 Advanced DBA for LUW Version: 6.1 [ Total Questions: 103 ]

IBM Exam A DB2 9.7 Advanced DBA for LUW Version: 6.1 [ Total Questions: 103 ] s@lm@n IBM Exam A2090-544 DB2 9.7 Advanced DBA for LUW Version: 6.1 [ Total Questions: 103 ] Topic 1, Volume A Question No : 1 - (Topic 1) An employee is not able to connect to the PRODDB database using

More information

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager,

Empowering DBA's with IBM Data Studio. Deb Jenson, Data Studio Product Manager, Empowering DBA's with IBM Data Studio Deb Jenson, Data Studio Product Manager, dejenson@us.ibm.com Disclaimer Copyright IBM Corporation [current year]. All rights reserved. U.S. Government Users Restricted

More information

BrainDumps.C _108.Questions

BrainDumps.C _108.Questions BrainDumps.C2090-614_108.Questions Number: C2090-614 Passing Score: 800 Time Limit: 120 min File Version: 12.05 http://www.gratisexam.com/ I have correct many of questions answers. If there is any more

More information

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions

1Z Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions 1Z0-060 Upgrade to Oracle Database 12cm Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-060 Exam on Upgrade to Oracle Database 12c... 2 Oracle 1Z0-060 Certification Details:... 2

More information

Pass IBM C Exam

Pass IBM C Exam Pass IBM C2090-612 Exam Number: C2090-612 Passing Score: 800 Time Limit: 120 min File Version: 37.4 http://www.gratisexam.com/ Exam Code: C2090-612 Exam Name: DB2 10 DBA for z/os Certkey QUESTION 1 Workload

More information

KillTest. 半年免费更新服务

KillTest.   半年免费更新服务 KillTest 质量更高 服务更好 学习资料 http://www.killtest.cn 半年免费更新服务 Exam : 000-731 Title : DB2 9 DBA for Linux,UNIX and Windows Version : DEMO 1 / 5 1.A database administrator has HADR enabled and wants to do a LOAD

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

DB2. Migration Guide. DB2 Version 9 GC

DB2. Migration Guide. DB2 Version 9 GC DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 DB2 DB2 Version 9 for Linux, UNIX, and Windows Migration Guide GC10-4237-00 Before using this information and the product it

More information

Vendor: IBM. Exam Code: C Exam Name: DB Fundamentals. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: DB Fundamentals. Version: Demo Vendor: IBM Exam Code: C2090-610 Exam Name: DB2 10.1 Fundamentals Version: Demo QUESTION 1 If the following command is executed: CREATE DATABASE test What is the page size (in kilobytes) of the database?

More information

1. A DBA needs to create a federated database and configure access to join data from three Oracle instances and one DB2 database. Which objects are ne

1. A DBA needs to create a federated database and configure access to join data from three Oracle instances and one DB2 database. Which objects are ne Exam : C2090-544 Title Version : DEMO : DB2 9.7 Advanced DBA for LUW https:// 1. A DBA needs to create a federated database and configure access to join data from three Oracle instances and one DB2 database.

More information

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: New Features for 9i OCPs. Version:Demo Oracle Exam Questions 1Z0-055 Oracle Database 11g: New Features for 9i OCPs Version:Demo 1. Which is the source used by Automatic SQL Tuning that runs as part of the AUTOTASK framework? A. SQL statements

More information

Number: Passing Score: 800 Time Limit: 120 min File Version:

Number: Passing Score: 800 Time Limit: 120 min File Version: 000-610 Number: 000-610 Passing Score: 800 Time Limit: 120 min File Version: 1.0 http://www.gratisexam.com/ Exam A QUESTION 1 If the following command is executed: CREATE DATABASE test What is the page

More information

Introduction to IBM DB2

Introduction to IBM DB2 Introduction to IBM DB2 Architecture Client-server system Server: SERVEDB, servedb.ing.man 10.17.2.91 Client: IBM Data Studio: graphical DB2 Command Window: command line 2 Architecture Servers, instances,

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI)

Explore the Oracle 10g database architecture. Install software with the Oracle Universal Installer (OUI) Oracle DBA (10g, 11g) Training Course Content Introduction (Database Architecture) Describe course objectives Explore the Oracle 10g database architecture Installing the Oracle Database Software Explain

More information

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year!

EXAMGOOD QUESTION & ANSWER. Accurate study guides High passing rate! Exam Good provides update free of charge in one year! EXAMGOOD QUESTION & ANSWER Exam Good provides update free of charge in one year! Accurate study guides High passing rate! http://www.examgood.com Exam : C2090-610 Title : DB2 10.1 Fundamentals Version

More information

Common DB2 Customer Issues. As seen by DB2-LUW support

Common DB2 Customer Issues. As seen by DB2-LUW support Common DB2 Customer Issues As seen by DB2-LUW support Hans Siebrand (hans_siebrand@kr.ibm.com) Jin Hwan Hyun (jhhyun2@kr.ibm.com) Information Management July 12, 2012 DB2 Support 3 levels 1 First contact

More information

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version :

Oracle 1Z Oracle Database 10g: Administration II. Download Full Version : Oracle 1Z0-043 Oracle Database 10g: Administration II Download Full Version : https://killexams.com/pass4sure/exam-detail/1z0-043 QUESTION: 172 You lost the index tablespace in your database. You decided

More information

IBM DB2 9 Database Administrator for Linux UNIX and Windows Upgrade.

IBM DB2 9 Database Administrator for Linux UNIX and Windows Upgrade. IBM 000-736 DB2 9 Database Administrator for Linux UNIX and Windows Upgrade http://killexams.com/exam-detail/000-736 with three partitions in which part 1 will be placed in table space TBSP0, part 2 will

More information

DB2 Performance Essentials

DB2 Performance Essentials DB2 Performance Essentials Philip K. Gunning Certified Advanced DB2 Expert Consultant, Lecturer, Author DISCLAIMER This material references numerous hardware and software products by their trade names.

More information

Oracle Database 11g: Administration I

Oracle Database 11g: Administration I Oracle 1z0-052 Oracle Database 11g: Administration I Version: 7.0 Topic 1, Volume A Oracle 1z0-052 Exam QUESTION NO: 1 You notice that the performance of the database has degraded because of frequent checkpoints.

More information

Vendor: IBM. Exam Code: Exam Name: IBM Certified Specialist Netezza Performance Software v6.0. Version: Demo

Vendor: IBM. Exam Code: Exam Name: IBM Certified Specialist Netezza Performance Software v6.0. Version: Demo Vendor: IBM Exam Code: 000-553 Exam Name: IBM Certified Specialist Netezza Performance Software v6.0 Version: Demo QUESTION NO: 1 Which CREATE DATABASE attributes are required? A. The database name. B.

More information

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability Duration: 4 Days Course Code: CL492G Overview: Gain a deeper understanding of the advanced recovery features of DB2 9 for Linux, UNIX,

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database SQL Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-051 Exam Title: Oracle Database 11g: SQL Fundamentals I Exam Number: 1Z0-071 Exam Title: Oracle Database SQL Oracle and Structured

More information

IBM EXAM QUESTIONS & ANSWERS

IBM EXAM QUESTIONS & ANSWERS IBM 000-730 EXAM QUESTIONS & ANSWERS Number: 000-730 Passing Score: 800 Time Limit: 120 min File Version: 69.9 http://www.gratisexam.com/ IBM 000-730 EXAM QUESTIONS & ANSWERS Exam Name: DB2 9 Fundamentals

More information

SAP8 Database Administration

SAP8 Database Administration Andre Faustmann, Michael Greulich, Andre Siegling, Benjamin Wegener, and Ronny Zimmermann SAP8 Database Administration with IBM* DB2* a ^. Galileo Press Bonn Boston Foreword 15 Acknowledgments 17 1.1 Who

More information

DB2 self-tuning memory manager log parser

DB2 self-tuning memory manager log parser Skill Level: Intermediate Askari Naqvi (askarin@ca.ibm.com) Software Development Analyst IBM Christian Garcia-Arellano (cmgarcia@ca.ibm.com) Software Developer IBM Haysam Alsayed (halsayed@ca.ibm.com)

More information

SQL Server DBA Course Content

SQL Server DBA Course Content 1 SQL Server DBA Course Content SQL Server Versions and Editions Features of SQL Server Differentiate the SQL Server and Oracle Services of SQL Server Tools of SQL server SQL Server Installation SQL server

More information

Performance Tuning for MDM Hub for IBM DB2

Performance Tuning for MDM Hub for IBM DB2 Performance Tuning for MDM Hub for IBM DB2 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions

1Z Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions 1Z0-034 Upgrade Oracle9i/10g to Oracle Database 11g OCP Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-034 Exam on Upgrade Oracle9i/10g to Oracle Database 11g OCP... 2 Oracle 1Z0-034

More information

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set.

A. Automatic memory management is disabled because PGA_AGGREGATE_TARGET and SGA_TARGET are not set. Volume: 148 Questions Question No : 1 memory_target big integer 808M pga_aggregate_target big integer 0 sga_target big integer 0 SQL> SHOW PARAMETER SGA_MAX_SIZE NAME TYPE VALUE sga_max_size big integer

More information

DB2 V8.1 for Linux, UNIX, and Windows Database Administration Certification: Backup and Recovery

DB2 V8.1 for Linux, UNIX, and Windows Database Administration Certification: Backup and Recovery DB2 V8.1 for Linux, UNIX, and Windows Database Administration Certification: Get ready for the exam Skill Level: Introductory Raul F. Chong (rfchong@ca.ibm.com) Database Consultant IBM 20 May 2003 This

More information

Exam Questions C

Exam Questions C Exam Questions C2090-610 DB2 10.1 Fundamentals https://www.2passeasy.com/dumps/c2090-610/ 1.If the following command is executed: CREATE DATABASE test What is the page size (in kilobytes) of the database?

More information

A. The EMPLOYEES table will be changed to read-only mode during the shrink operation

A. The EMPLOYEES table will be changed to read-only mode during the shrink operation Volume: 150 Questions Question No : 1 You executed the following SQL statement to shrink the EMPLOYEES table segment stored in the EXAMPLE tablespace: ALTER TABLE employees SHRINK SPACE CASCADE; Which

More information

DB2 9.7 a technical overview. By Raj Mahal Consultant & DB2 Expert, Triton Consulting

DB2 9.7 a technical overview. By Raj Mahal Consultant & DB2 Expert, Triton Consulting DB2 9.7 a technical overview By Raj Mahal Consultant & DB2 Expert, Triton Consulting September 2009 DB2 gets more bite with COBRA DB2 has been making huge strides over the past few years. The previous

More information

DB2 9 DBA exam 731 prep, Part 6: High availability: Backup and recovery

DB2 9 DBA exam 731 prep, Part 6: High availability: Backup and recovery DB2 9 DBA exam 731 prep, Part 6: High availability: Backup and recovery Skill Level: Intermediate Sylvia Qi (sylviaq@ca.ibm.com) WebSphere Application Server Function Verification Tester IBM Toronto Lab

More information

VerifiedDumps. Get the Valid and Verified Exam Questions & Answers Dump for 100% Pass

VerifiedDumps.   Get the Valid and Verified Exam Questions & Answers Dump for 100% Pass VerifiedDumps http://www.verifieddumps.com Get the Valid and Verified Exam Questions & Answers Dump for 100% Pass Exam : 1Z0-031 Title : Oracle9i database:fundamentals i Vendors : Oracle Version : DEMO

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

Oracle Database 11g for Experienced 9i Database Administrators

Oracle Database 11g for Experienced 9i Database Administrators Oracle Database 11g for Experienced 9i Database Administrators 5 days Oracle Database 11g for Experienced 9i Database Administrators Course Overview The course will give experienced Oracle 9i database

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

IBM DB DBA for LUW Upgrade from DB2 10.1

IBM DB DBA for LUW Upgrade from DB2 10.1 IBM DB2 10.5 DBA for LUW Upgrade from DB2 10.1 Dumps Available Here at: /ibm-exam/c2090-311-dumps.html Enrolling now you will get access to 30 questions in a unique set of C2090-311 dumps Question 1 An

More information

Accelerate Your DB2 Business On Demand Autonomically!

Accelerate Your DB2 Business On Demand Autonomically! Session: C5 Accelerate Your DB2 Business On Demand Autonomically! Scott Hayes DBI (www.database-brothers.com) Nov 06, 2007 11:45 a.m. 12:45 p.m. (C5) Platform: DB2 for Linux, UNIX, Windows 1 Agenda A bit

More information

IBM EXAM - C DB Advanced DBA for Linux UNIX and Windows. Buy Full Product.

IBM EXAM - C DB Advanced DBA for Linux UNIX and Windows. Buy Full Product. IBM EXAM - C2090-614 DB2 10.1 Advanced DBA for Linux UNIX and Windows Buy Full Product http://www.examskey.com/c2090-614.html Examskey IBM C2090-614 exam demo product is here for you to test the quality

More information

Database Administration Using the DBA Cockpit: IBM DB2 for Linux, UNIX, and Windows

Database Administration Using the DBA Cockpit: IBM DB2 for Linux, UNIX, and Windows Database Administration Guide Database Administration Using the DBA Cockpit: IBM DB2 for Linux, UNIX, and Windows For SAP Systems based on SAP Enhancement Package 1 for SAP NetWeaver 7.0 Document Version

More information

COMP 3400 Mainframe Administration 1

COMP 3400 Mainframe Administration 1 COMP 3400 Mainframe Administration 1 Christian Grothoff christian@grothoff.org http://grothoff.org/christian/ 1 These slides are based in part on materials provided by IBM s Academic Initiative. 1 Databases

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : C2090-546 Title : DB2 9.7 Database Administrator for Linux UNIX or Windows

More information

Microsoft SQL Server Database Administration

Microsoft SQL Server Database Administration Address:- #403, 4 th Floor, Manjeera Square, Beside Prime Hospital, Ameerpet, Hyderabad 500038 Contact: - 040/66777220, 9177166122 Microsoft SQL Server Database Administration Course Overview This is 100%

More information

ORACLE DBA TRAINING IN BANGALORE

ORACLE DBA TRAINING IN BANGALORE ORACLE DBA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 WWW.TRAININGINBANGALORE.COM Oracle DBA Training Syllabus Introduction

More information

Oracle12c Release 1 New Features for Administrators (5 Days)

Oracle12c Release 1 New Features for Administrators (5 Days) www.peaklearningllc.com Oracle12c Release 1 New Features for Administrators (5 Days) Course Description This course provides a complete, hands-on introduction to the newest release of Oracle Enterprise

More information

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents

Synergetics-Standard-SQL Server 2012-DBA-7 day Contents Workshop Name Duration Objective Participants Entry Profile Training Methodology Setup Requirements Hardware and Software Requirements Training Lab Requirements Synergetics-Standard-SQL Server 2012-DBA-7

More information

TUC TOTAL UTILITY CONTROL FOR DB2 Z/OS. TUC Unique Features

TUC TOTAL UTILITY CONTROL FOR DB2 Z/OS. TUC Unique Features TUC Unique Features 1 Overview This document is describing the unique features of TUC that make this product outstanding in automating the DB2 object maintenance tasks. The document is comparing the various

More information

Oracle 1Z0-053 Exam Questions & Answers

Oracle 1Z0-053 Exam Questions & Answers Oracle 1Z0-053 Exam Questions & Answers Number: 1Z0-053 Passing Score: 660 Time Limit: 120 min File Version: 38.8 http://www.gratisexam.com/ Oracle 1Z0-053 Exam Questions & Answers Exam Name: Oracle Database

More information

Vendor: IBM. Exam Code: Exam Name: IBM Certified Database Administrator - DB2 10 for z/os. Version: Demo

Vendor: IBM. Exam Code: Exam Name: IBM Certified Database Administrator - DB2 10 for z/os. Version: Demo Vendor: IBM Exam Code: 000-612 Exam Name: IBM Certified Database Administrator - DB2 10 for z/os Version: Demo QUESTION NO: 1 Workload Manager (WLM) manages how many concurrent stored procedures can run

More information

Basi di Dati Complementi. Mainframe

Basi di Dati Complementi. Mainframe Basi di Dati Complementi 3.1. DBMS commerciali DB2-3.1.2 Db2 in ambiente mainframe Andrea Maurino 2007 2008 Mainframe 1 Mainframe Terminologia Mainframe Storage Management Subsystem (SMS) Is an automated

More information

Oracle 1Z Oracle Database 11g- Administrator I. Download Full Version :

Oracle 1Z Oracle Database 11g- Administrator I. Download Full Version : Oracle 1Z1-052 Oracle Database 11g- Administrator I Download Full Version : https://killexams.com/pass4sure/exam-detail/1z1-052 QUESTION: 153 User SCOTT executes the following command on the EMP table

More information

IBM DB2 Universal Database. What s New. Version 8 SC

IBM DB2 Universal Database. What s New. Version 8 SC IBM DB2 Universal Database What s New Version 8 SC09-4848-00 IBM DB2 Universal Database What s New Version 8 SC09-4848-00 Before using this information and the product it supports, be sure to read the

More information

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo

Oracle. Exam Questions 1Z Oracle Database 11g: Administration I. Version:Demo Oracle Exam Questions 1Z0-052 Oracle Database 11g: Administration I Version:Demo 1. You notice that the performance of the database has degraded because of frequent checkpoints. Which two actions resolve

More information

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l

Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Oracle Database 12c: New Features for Administrators (40 hrs.) Prerequisites: Oracle Database 11g: Administration Workshop l Course Topics: Introduction Overview Oracle Database Innovation Enterprise Cloud

More information

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.)

Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) Volume: 183 Questions Question No : 1 Which three statements are true regarding persistent lightweight jobs? (Choose three.) A. The user cannot set privileges on persistent lightweight jobs. B. The use

More information

Topexam. 一番権威的な IT 認定試験ウェブサイト 最も新たな国際 IT 認定試験問題集

Topexam.  一番権威的な IT 認定試験ウェブサイト 最も新たな国際 IT 認定試験問題集 Topexam 一番権威的な IT 認定試験ウェブサイト http://www.topexam.jp 最も新たな国際 IT 認定試験問題集 Exam : 1z0-050 Title : Oracle Database 11g: New Features for Administrators Vendor : Oracle Version : DEMO Get Latest & Valid 1Z0-050

More information

IBM DB2 11 DBA for z/os Certification Review Guide Exam 312

IBM DB2 11 DBA for z/os Certification Review Guide Exam 312 Introduction IBM DB2 11 DBA for z/os Certification Review Guide Exam 312 The purpose of this book is to assist you with preparing for the IBM DB2 11 DBA for z/os exam (Exam 312), one of the two required

More information

Oracle Database 11g: New Features for Oracle 9i DBAs

Oracle Database 11g: New Features for Oracle 9i DBAs Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: New Features for Oracle 9i DBAs Duration: 5 Days What you will learn This course introduces students to the new features of Oracle Database

More information

Symbols.NET Provider Support 772

Symbols.NET Provider Support 772 Index Symbols.NET Provider Support 772 A access path 710 access plan 710, 779 Administration notification logs 744 Advanced SQL 343 alias 298, 301, 822 824 Analyzing Data s Physical Organization REORGCHK

More information

PASS4TEST. IT Certification Guaranteed, The Easy Way! We offer free update service for one year

PASS4TEST. IT Certification Guaranteed, The Easy Way!  We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 1Z0-235 Title : Oracle 11i applications DBA:Fundamentals I Vendors : Oracle

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

Short Summary of DB2 V4 Through V6 Changes

Short Summary of DB2 V4 Through V6 Changes IN THIS CHAPTER DB2 Version 6 Features DB2 Version 5 Features DB2 Version 4 Features Short Summary of DB2 V4 Through V6 Changes This appendix provides short checklists of features for the most recent versions

More information

SQL Server 2014 Training. Prepared By: Qasim Nadeem

SQL Server 2014 Training. Prepared By: Qasim Nadeem SQL Server 2014 Training Prepared By: Qasim Nadeem SQL Server 2014 Module: 1 Architecture &Internals of SQL Server Engine Module : 2 Installing, Upgrading, Configuration, Managing Services and Migration

More information

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate

Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Oracle University Contact Us: +27 (0)11 319-4111 Exam Prep Seminar Package: Oracle Database 12c Administrator Certified Associate Duration: 1 Day What you will learn This package provides everything an

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

Course Contents of ORACLE 9i

Course Contents of ORACLE 9i Overview of Oracle9i Server Architecture Course Contents of ORACLE 9i Responsibilities of a DBA Changing DBA Environments What is an Oracle Server? Oracle Versioning Server Architectural Overview Operating

More information

Managing Log files With a User Exit Program

Managing Log files With a User Exit Program 284 Chapter 4: High Availability and Diagnostics the primary database. (New logs from the primary database can be retrieved and applied to the copy of the database at any time.) The standby copy of the

More information

DumpsKing. Latest exam dumps & reliable dumps VCE & valid certification king

DumpsKing.   Latest exam dumps & reliable dumps VCE & valid certification king DumpsKing http://www.dumpsking.com Latest exam dumps & reliable dumps VCE & valid certification king Exam : 1z1-062 Title : Oracle Database 12c: Installation and Administration Vendor : Oracle Version

More information

Data is moving faster than ever, the volume of data is exploding, the

Data is moving faster than ever, the volume of data is exploding, the Foreword Data is moving faster than ever, the volume of data is exploding, the expectation is moving rapidly toward real-time, all the time, and users want access to data quicker and more easily. Yesterday

More information

MySQL 5.0 Certification Study Guide

MySQL 5.0 Certification Study Guide MySQL 5.0 Certification Study Guide Paul DuBois, Stefan Hinz, and Carsten Pedersen MySQC Press 800 East 96th Street, Indianapolis, Indiana 46240 USA Table of Contents Introduction 1 About This Book 1 Sample

More information

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database

MOC 6232A: Implementing a Microsoft SQL Server 2008 Database MOC 6232A: Implementing a Microsoft SQL Server 2008 Database Course Number: 6232A Course Length: 5 Days Course Overview This course provides students with the knowledge and skills to implement a Microsoft

More information

Oracle Architectural Components

Oracle Architectural Components Oracle Architectural Components Date: 14.10.2009 Instructor: Sl. Dr. Ing. Ciprian Dobre 1 Overview of Primary Components User process Shared Pool Instance SGA Server process PGA Library Cache Data Dictionary

More information