Pass IBM C Exam

Size: px
Start display at page:

Download "Pass IBM C Exam"

Transcription

1 Pass IBM C Exam Number: C Passing Score: 800 Time Limit: 120 min File Version: Exam Code: C Exam Name: DB2 10 DBA for z/os

2 Certkey QUESTION 1 Workload Manager (WLM) manages how many concurrent stored procedures can run in an address space and the number of concurrent stored procedures in an address space cannot exceed the value of the NUMTCB parameter. Which statement about the value of NUMTCB is correct? A. NUMTCB parameter must be set to 1 for Java stored procedures. B. NUMTCB parameter must be set to 1 for REXX stored procedures. C. NUMTCB parameter can be a value greater than 1 for native SQL stored procedures. D. NUMTCB parameter can be a value greater than 1 when a stored procedure invokes DB2 utilities. /Reference: : QUESTION 2 If a single row of the PLAN_TABLE has a 'Y' value in more than one of the sort composite columns, what is indicated? A. The next sort step will perform two sorts. B. There are multiple sorts in the plan step. C. One sort in the plan step will accomplish two tasks. D. Two sorts are performed on the new table of a star join. /Reference: : QUESTION 3 The EXPLAIN STMTCACHE ALL statement provides information about SQL tuning. Which information is part of the DSN_STATEMENT_CACHE_TABLE? A. Filter factor information. B. Stage 1 and stage 2 information. C. Number of columns used in an index. D. Number of times an SQL statement is executed. /Reference: : QUESTION 4 What trace class will show deadlock information? A. Audit class 3.

3 B. Statistic class 3. C. Accounting class 1. D. Performance class 8. /Reference: : QUESTION 5 What is a consideration when specifying DATA CAPTURE CHANGES? A. Can be specified for capturing changes to an XML object. B. To minimize logging, specify NOT LOGGED when DATA CAPTURE CHANGES is specified. C. REFRESH TABLE statement is not allowed with a table defined with DATA CAPTURE CHANGES. D. You cannot turn on DATA CAPTURE CHANGES if the table space is in advisory REORG- pending. /Reference: : QUESTION 6 Which trace gives information about frequent log space shortages? A. Audit trace class(8) B. Statistics trace class(3) C. Accounting trace class(10) D. Performance trace class(4) /Reference: : QUESTION 7 What should be implemented in order to audit all the activity of the install SYSADM? A. DATA CAPTURE CHANGES should be set on all tables. B. A DB2 audit policy should be established, identifying the SYSADM ID to be audited. C. The DB2 authorization exit should be modified to convert the install SYSADM ID to another ID.

4 D. Nothing can be done, the install SYSADM has the highest authority and is not controlled or monitored. /Reference: : QUESTION 8 On what type of index would an ALTER INDEX ADD COLUMN be allowed? A. An XML index. B. An auxiliary index. C. A user defined catalog index. D. An index defined with BUSINESS_TIME WITHOUT OVERLAPS. /Reference: : QUESTION 9 The following DDL statements are executed to create the following objects: CREATE TABLESPACE TS1 BUFFERPOOL BP0 IN DB1; CREATE TABLE USER1.TB1 ( COL1 INTEGER, COL2 VARCHAR(10) ) IN DB1.TS1; CREATE INDEX USER1.IX1 ON USER1.TB1 ( COL2 ) BUFFERPOOL BP0 COPY YES; Next, the following ALTER statements are done (in order): 1) ALTER TABLESPACE DB1.TS1 BUFFERPOOL BP8K0 MAXPARTITIONS 20; 2) ALTER TABLESPACE DB1.TS1 SEGSIZE 64; 3) ALTER INDEX USER1.IX1 BUFFERPOOL BP16K0; Which of the following will materialize all of the changes with the least amount of work? A. Nothing needs to be done. B. REORG INDEX USER1.IX1 SHRLEVEL CHANGE C. REORG TABLESPACE DB1.TS1 SHRLEVEL REFERENCE D. REORG TABLESPACE DB1.TS1 SHRLEVEL REFERENCEREORG INDEX USER1.IX1 SHRLEVEL CHANGE /Reference: : QUESTION 10 You have to design a numeric column, which is also the primary key. The column should cover large (i.e., ) numbers. Which column data definition covers the requirements? A. BIGINT B. INTEGER C. DECFLOAT (34) D. DECIMAL (31,18) Correct Answer: A

5 /Reference: : QUESTION 11 How can you find out which external and native stored procedures are active in the system? A. Use the -DIS PROCEDURE(*.*) command. B. Use the -DIS THREAD(*) TYPE(PROC) command. C. There is no WLM or DB2 command to obtain this information. D. You can only obtain this information indirectly if you know the WLM application environment by issuing the D WLM,APPLENV=xxxx command. /Reference: : QUESTION 12 For monitoring space growth over time, which statistics should NOT be considered? A. SYSIBM.SYSTABLEPART_HISTCARDF, SPACEFSYSIBM.SYSINDEXPART_HISTCARDF, SPACEF B. SYSIBM.SYSTABLEPARTCARDF, SPACEFSYSIBM.SYSINDEXPARTCARDF, SPACEF C. SYSIBM.SYSTABLESPACEDSSIZE, AVGROWLENSYSIBM.SYSINDEXESPIECESIZE, AVGKEYLEN D. SYSIBM.SYSTABLESPACESTATSSPACESYSIBM.SYSINDEXSPACESTATSSPACE /Reference: : QUESTION 13 When is a merge scan join a well performing access path? A. When the number of qualifying rows of the inner and outer table are both large. B. When the query references at least two dimensions and the STARJOIN subsystem parameter is 1. C. When the number of rows in the outer table is small and the number of pages accessed in the inner table is small. D. When the matching columns of the inner table are in a non-clustering index or the outer table has duplicate qualifying rows. Correct Answer: A /Reference: : QUESTION 14 When determining what page size will be best for index compression, which utility can be used to provide

6 information on space saved and potential buffer space wasted for each of the different page sizes? A. DIAGNOSE B. DSN1COMP C. DSN1PRNT D. DSN1LOGP /Reference: : QUESTION 15 The new billing application is seeing Class 2 Elapsed Time being made up of mainly Class 3 Synchronous database I/O time. All of the DB2 objects for the new billing application are in BP5. What command can be used to research the details behind the database I/O time associated with the new billing application? A. DISPLAY DDF DETAIL B. START TRACE(AUDIT) C. DISPLAY BUFFERPOOL(*) D. DISPLAY BUFFERPOOL(BP5) LSTATS(ACTIVE) DETAIL /Reference: : QUESTION 16 How do you enable parallelism in a dynamic SQL statement? A. BIND with DEGREE(1) B. BIND with DEGREE(ANY) C. Use SET CURRENT DEGREE = ANY D. Use SET CURRENT DEGREE = '1' /Reference: : QUESTION 17 The access path chosen for a query shows a table space scan, when it appears that there is an index available that would provide a more efficient access path. What situation could have caused a table space scan to be chosen instead of the index? A. Index is created with PCTFREE of zero. B. The number of columns in the index is less than four. C. RUNSTATS were run when there were no rows in the table. D. RUNSTATS were run when there was a million rows in the table.

7 /Reference: : QUESTION 18 You have been asked to find packages that use isolation level UR in dynamic SQL. Which trace will be utilized? A. Audit trace class(4) B. Monitor trace class(6) C. Performance trace class(3) D. Accounting trace class(1,2,3,7,8) /Reference: : QUESTION 19 Which of the following techniques CANNOT be used to implement DB2 based row level authorization in a readonly environment for a specific table? A. Using a view. B. Using a VALIDPROC. C. Using multi-level security. D. Using masks and permissions. /Reference: : QUESTION 20 If security administration is separated from system and database administration, via zparm, which level of authority is required to define roles or trusted contexts? A. SYSADM B. DBADM C. SECADM D. INSTALL SYSOPR /Reference: : QUESTION 21

8 In order to communicate a DISPLAY DATABASE (DB1) SPACENAM (TS1) command execution from one DB2 member to another, which coupling facility structure is used? A. GBP32 B. SCA C. LOCK D. GBP0 /Reference: : QUESTION 22 Given the following CREATE TABLE statement: CREATE TABLE TB1 (C1 CHAR(4), C2 XML, C3 CLOB(1K)) ; How many VSAM clusters will DB2 create? A. 1 B. 4 C. 5 D. 6 /Reference: : QUESTION 23 Compression is desired for index IX1. The current definition of IX1 is as follows: CREATE INDEX IX1 ON TAB1 (COL1 ASC) USING STOGROUP STG1 BUFFERPOOL BP1 ; Which of the following activities must be performed first in order to compress the existing index IX1? A. Copy the index. B. REBUILD the index. C. Compress the tablespace. D. ALTER the index to use a page size larger than 4K. /Reference: : QUESTION 24 A table is created using the ORGANIZED BY HASH UNIQUE syntax, what action should occur? A. Specify the column names to be hashed. B. Create a unique index on the hash columns. C. Create a clustering index on the hash columns. D. Create a unique clustering index on the hash columns.

9 Correct Answer: A /Reference: : QUESTION 25 Why does the following DDL command fail? CREATE INDEX X1 ON T1 (COL1, COL2, COL3, BUSINESS_TIME WITHOUT_OVERLAPS); A. The index must be partitioned. B. The index must use page size > 4K. C. The index must be defined as UNIQUE. D. The index must be defined as CLUSTER. /Reference: : QUESTION 26 Which of the following tasks cannot be done via a single ALTER TABLE statement? A. Add a new partition to the table space. B. Change the VALIDPROC attribute of the table. C. Change a table check constraint on the table. D. Change the DATA CAPTURE attribute of the table. /Reference: : QUESTION 27 Altering the DSSIZE is allowed for what type of table space? A. XML table space. B. Universal table space. C. Segmented table space. D. DSSIZE cannot be altered. /Reference: : QUESTION 28 When these two commands are issued in sequence, one after the other: STOP FUNCTION SPECIFIC(A.B)

10 ACTION(REJECT) STOP FUNCTION SPECIFIC(A.B) ACTION(QUEUE) What will occur? A. Function A.B is stopped and queues all access. B. Function A.B is stopped and rejects all access. C. Function A.B is stopped and rejects all access until we start the function or run out of installation timeout. D. Function A.B is stopped and queues all access until we start the function or run out of installation timeout. /Reference: : QUESTION 29 What is one of the first key steps in preparing to use the BACKUP SYSTEM utility? A. Run the MODIFY RECOVERY utility. B. Alter the BSDS to allow BACKUP SYSTEM. C. Define one or more storage groups to a COPYPOOL. D. Stop DB2 to enable DFSMShsm functionality to be used. /Reference: : QUESTION 30 The application will be handling a large volume of input data that will need to be added to or update 4 different tables. On average, there will be 50 million input records daily. To ensure that the application process to SQL INSERT and SQL UPDATE(or SQL MERGE) delivers a high level of availability to the tables involved in this application process, what is a key component of the application coding? A. Issue a LOCK TABLE for all 4 tables. B. Execute the SQL INSERT before the SQL UPDATE. C. Provide an effective commit / restart process. D. Run a QUIESCE utility before the process starts. /Reference: : QUESTION 31 Which option allows the UNLOAD utility to unload LOBs into output files together with non-lob data? A. DELIMITED B. SPANNED YES C. DSNTYPE HFS on the TEMPLATE D. DSNTYPE LIBRARY or PDS on the TEMPLATE

11 /Reference: :

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

Vendor: IBM. Exam Code: C Exam Name: DB2 10 DBA for z/os. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: DB2 10 DBA for z/os. Version: Demo Vendor: IBM Exam Code: C2090-612 Exam Name: DB2 10 DBA for z/os Version: Demo QUESTION NO: 1 Workload Manager (WLM) manages how many concurrent stored procedures can run in an address space and the number

More information

C Examcollection.Premium.Exam.108q

C Examcollection.Premium.Exam.108q C2090-612.Examcollection.Premium.Exam.108q Number: C2090-612 Passing Score: 800 Time Limit: 120 min File Version: 29.5 http://www.gratisexam.com/ Exam Code: C2090-612 Exam Name: DB2 10 DBA for z/os Braindumps

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

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

C Exam code: C Exam name: IBM DB2 11 DBA for z/os. Version 15.0

C Exam code: C Exam name: IBM DB2 11 DBA for z/os. Version 15.0 C2090-312 Number: C2090-312 Passing Score: 800 Time Limit: 120 min File Version: 15.0 http://www.gratisexam.com/ Exam code: C2090-312 Exam name: IBM DB2 11 DBA for z/os Version 15.0 C2090-312 QUESTION

More information

Vendor: IBM. Exam Code: C Exam Name: DB2 10 System Administrator for z/os. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: DB2 10 System Administrator for z/os. Version: Demo Vendor: IBM Exam Code: C2090-617 Exam Name: DB2 10 System Administrator for z/os Version: Demo QUESTION 1 Assume that you have implemented identity propagation and that the distributed user name is 'MARY'.

More information

Database Design and Implementation

Database Design and Implementation Chapter 2 Database Design and Implementation The concepts in database design and implementation are some of the most important in a DBA s role. Twenty-six percent of the 312 exam revolves around a DBA

More information

Optimizing Insert Performance - Part 1

Optimizing Insert Performance - Part 1 Optimizing Insert Performance - Part 1 John Campbell Distinguished Engineer DB2 for z/os development CAMPBELJ@uk.ibm.com 2 Disclaimer/Trademarks The information contained in this document has not been

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

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

DB2 UDB: App Programming - Advanced

DB2 UDB: App Programming - Advanced A Access Methods... 8:6 Access Path Selection... 8:6 Access Paths... 5:22 ACQUIRE(ALLOCATE) / RELEASE(DEALLOCATE)... 5:14 ACQUIRE(USE) / RELEASE(DEALLOCATE)... 5:14 Active Log... 9:3 Active Logs - Determining

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

z/os Db2 Batch Design for High Performance

z/os Db2 Batch Design for High Performance Division of Fresche Solutions z/os Db2 Batch Design for High Performance Introduction Neal Lozins SoftBase Product Manager All tests in this presentation were run on a dedicated zbc12 server We used our

More information

Introduction to DB2 11 for z/os

Introduction to DB2 11 for z/os Chapter 1 Introduction to DB2 11 for z/os This chapter will address the job responsibilities of the DB2 system administrator, what to expect on the IBM DB2 11 System Administrator for z/os certification

More information

Foreword Preface Db2 Family And Db2 For Z/Os Environment Product Overview DB2 and the On-Demand Business DB2 Universal Database DB2 Middleware and

Foreword Preface Db2 Family And Db2 For Z/Os Environment Product Overview DB2 and the On-Demand Business DB2 Universal Database DB2 Middleware and Foreword Preface Db2 Family And Db2 For Z/Os Environment Product Overview DB2 and the On-Demand Business DB2 Universal Database DB2 Middleware and Connectivity DB2 Application Development DB2 Administration

More information

Advanced Design Considerations

Advanced Design Considerations Advanced Design Considerations par Phil Grainger, BMC Réunion du Guide DB2 pour z/os France Mercredi 25 novembre 2015 Hôtel Hilton CNIT, Paris-La Défense Introduction Over the last few years, we have gained

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

What Developers must know about DB2 for z/os indexes

What Developers must know about DB2 for z/os indexes CRISTIAN MOLARO CRISTIAN@MOLARO.BE What Developers must know about DB2 for z/os indexes Mardi 22 novembre 2016 Tour Europlaza, Paris-La Défense What Developers must know about DB2 for z/os indexes Introduction

More information

Contents. Using. Dynamic SQL 44. Bag of Tricks 56. Complex SQL Guidelines 90. Working with Nulls 115. Aggregate Functions 135

Contents. Using. Dynamic SQL 44. Bag of Tricks 56. Complex SQL Guidelines 90. Working with Nulls 115. Aggregate Functions 135 Contents Preface xxiii Part I SQL Techniques, Tips, and Tricks 1 The Magic Words 3 An Overview of SQL 4 SQL Tools of the Trade 13 Static SQL 42 Dynamic SQL 44 SQL Performance Factors 45 2 Data Manipulation

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 10 for z/os Technical Update

DB2 10 for z/os Technical Update DB2 10 for z/os Technical Update James Teng, Ph.D. Distinguished Engineer IBM Silicon Valley Laboratory March 12, 2012 Disclaimers & Trademarks* 2 Information in this presentation about IBM's future plans

More information

What s new in DB2 Administration Tool 10.1 for z/os

What s new in DB2 Administration Tool 10.1 for z/os What s new in DB2 Administration Tool 10.1 for z/os Joseph Reynolds, Architect and Development Lead, IBM jreynold@us.ibm.com Calene Janacek, DB2 Tools Product Marketing Manager, IBM cjanace@us.ibm.com

More information

IBM C IBM DB2 11 DBA for z/os. Download Full Version :

IBM C IBM DB2 11 DBA for z/os. Download Full Version : IBM C2090-312 IBM DB2 11 DBA for z/os Download Full Version : http://killexams.com/pass4sure/exam-detail/c2090-312 Answer: C, E QUESTION: 58 You want to convert a segmented table space into a partition-by-growth

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

Db2 12 A new spin on a successful database

Db2 12 A new spin on a successful database Phil Grainger Principal Enablement Manager BMC Software Db2 12 A new spin on a successful database Management Performance Administration So What's new with Performance Performance Management Db2 12? Availability

More information

Crossing Over/ Breaking the DB2 Platform Barrier Comparing the Architectural Differences of DB2 on the Mainframe Vs. Distributed Platforms

Crossing Over/ Breaking the DB2 Platform Barrier Comparing the Architectural Differences of DB2 on the Mainframe Vs. Distributed Platforms Crossing Over/ Breaking the DB2 Platform Barrier Comparing the Architectural Differences of DB2 on the Mainframe Vs. Distributed Platforms Agenda Basic Components Terminology Differences Storage Management

More information

PBR RPN - Removing Partitioning restrictions in Db2 12 for z/os

PBR RPN - Removing Partitioning restrictions in Db2 12 for z/os PBR RPN - Removing Partitioning restrictions in Db2 12 for z/os Steve Thomas CA Technologies 07/11/2017 Session ID Agenda Current Limitations in Db2 for z/os Partitioning Evolution of partitioned tablespaces

More information

An A-Z of System Performance for DB2 for z/os

An A-Z of System Performance for DB2 for z/os Phil Grainger, Lead Product Manager BMC Software March, 2016 An A-Z of System Performance for DB2 for z/os The Challenge Simplistically, DB2 will be doing one (and only one) of the following at any one

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

Eenie Meenie Miney Mo, Which Table (Space) Type and Page Size Shall I Choose for DB2 on z/os?

Eenie Meenie Miney Mo, Which Table (Space) Type and Page Size Shall I Choose for DB2 on z/os? Eenie Meenie Miney Mo, Which Table (Space) Type and Page Size Shall I Choose for DB2 on z/os? September 13, 2012 Mark Rader IBM ATS - DB2 for z/os mrader@us.ibm.com 2012 IBM Corporation Title: Eenie Meenie

More information

Copyright 2007 IBM Corporation All rights reserved. Copyright 2007 IBM Corporation All rights reserved

Copyright 2007 IBM Corporation All rights reserved. Copyright 2007 IBM Corporation All rights reserved Structure and Format Enhancements : UTS & RRF Willie Favero Senior Certified IT Specialist DB2 for z/os Software Sales Specialist IBM Sales and Distribution West Region, Americas 713-9401132 wfavero@attglobal.net

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

290 Index. Global statement cache. See Caching

290 Index. Global statement cache. See Caching Index A Active log, 7, 49-53, 55-60, 163, 166, 169, 170, 263, 265 Address spaces, 10-22 ADMF, 8 allied, 10-12 classifying, 78 database services, 8 dumps and, 68, 72 enclave and, 17 DDF, 8, 17, 18 DBAS,

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

DB2 10 for z/os Technical Overview

DB2 10 for z/os Technical Overview DB2 10 for z/os Technical Overview John Campbell Distinguished Engineer DB2 for z/os Development IBM Silicon Valley Lab Email: CampbelJ@uk.ibm.com 2010 IBM Corporation DB2 10 for z/os IBM Software Group

More information

DB2 for z/os DB2 10 for z/os DBA Productivity

DB2 for z/os DB2 10 for z/os DBA Productivity DB2 for z/os DB2 10 for z/os DBA Productivity Midwest DB2 User Group September 15, 2010 Mark Rader Advanced Technical Skills (ATS) DB2 for z/os Disclaimer DB2 10 for z/os Disclaimer: Information regarding

More information

DB2 12 A new spin on a successful database

DB2 12 A new spin on a successful database Presenter: Dan Lohmeier Lead Developer BMC Software Author: Phil Grainger Product Manager BMC Software DB2 12 A new spin on a successful database So, what s new with DB2 12 We ll take a speedy journey

More information

Enhanced Monitoring Support in DB2 10 for z/os

Enhanced Monitoring Support in DB2 10 for z/os DB2 for z/os Version 10 Enhanced Monitoring Support in DB2 10 for z/os Baltimore/Washington DB2 Users Group December 8, 2010 Mark Rader IBM Advanced Technical Skills Disclaimer Copyright IBM Corporation

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

Db2 12 for z/os. Data Sharing: Planning and Administration IBM SC

Db2 12 for z/os. Data Sharing: Planning and Administration IBM SC Db2 12 for z/os Data Sharing: Planning and Administration IBM SC27-8849-02 Db2 12 for z/os Data Sharing: Planning and Administration IBM SC27-8849-02 Notes Before using this information and the product

More information

IBM EXAM - C DB Fundamentals. Buy Full Product.

IBM EXAM - C DB Fundamentals. Buy Full Product. IBM EXAM - C2090-610 DB2 10.1 Fundamentals Buy Full Product http://www.examskey.com/c2090-610.html Examskey IBM C2090-610 exam demo product is here for you to test the quality of the product. This IBM

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

Cloning - What s new and faster?

Cloning - What s new and faster? Cloning - What s new and faster? SOURCE TARGET DB2 z/os Database Cloning Using Instant CloningExpert for DB2 z/os Ulf Heinrich Director Solutions Delivery 1 Agenda Cloning basics - What type of cloning

More information

Eenie Meenie Miney Mo, Which Table (Space) Type and Page Size Shall I Choose for DB2 on z/os?

Eenie Meenie Miney Mo, Which Table (Space) Type and Page Size Shall I Choose for DB2 on z/os? Eenie Meenie Miney Mo, Which Table (Space) Type and Page Size Shall I Choose for DB2 on z/os? St. Louis DB2 Users Group December 3, 2013 John Iczkovits iczkovit@us.ibm.com 1 Title: Eenie Meenie Miney Mo,

More information

Modern DB2 for z/os Physical Database Design

Modern DB2 for z/os Physical Database Design Modern DB2 for z/os Physical Database Design Northeast Ohio DB2 Users Group Robert Catterall, IBM rfcatter@us.ibm.com May 12, 2016 2016 IBM Corporation Agenda Get your partitioning right Getting to universal

More information

Database Management using DB2 Tools

Database Management using DB2 Tools IBM Software Group Database Management using DB2 Tools 2005 IBM Corporation IBM DB2 Data Base Tools DB2 Data Base Tools Categories Database Administration Utility Management Performance Management Recovery

More information

DB2 UDB: Application Programming

DB2 UDB: Application Programming A ABS or ABSVAL... 4:19 Access Path - Determining... 10:8 Access Strategies... 9:3 Additional Facts About Data Types... 5:18 Aliases... 1:13 ALL, ANY, SOME Operator... 3:21 AND... 3:12 Arithmetic Expressions...

More information

A Field Guide for Test Data Management

A Field Guide for Test Data Management A Field Guide for Test Data Management Kai Stroh, UBS Hainer GmbH Typical scenarios Common situation Often based on Unload/Load Separate tools required for DDL generation Hundreds of jobs Data is taken

More information

THE BUFFER POOL. Spring Utility Improvements in DB2 9 for z/os By Craig S. Mullins

THE BUFFER POOL. Spring Utility Improvements in DB2 9 for z/os By Craig S. Mullins Spring 2009 THE BUFFER POOL Utility Improvements in DB2 9 for z/os By Craig S. Mullins Every new release of DB2 brings with it new functionality and improvements for the IBM DB2 utilities. And DB2 Version

More information

Db2 V12 Gilbert Sieben

Db2 V12 Gilbert Sieben Db2 V12 Migration @KBC Gilbert Sieben Agenda 1. Time line 2. Premigration checks 3. Migration to V12 4. Measurements 5. New Features 6. Lessons learned Company 2 1. Time line Project of 1 year, 300 Mandays,

More information

Attack of the DB2 for z/os Clones Clone Tables That Is!

Attack of the DB2 for z/os Clones Clone Tables That Is! Attack of the DB2 for z/os Clones Clone Tables That Is! John Lyle DB2 for z/os Development Silicon Valley Laboratory, San Jose, CA New England DB2 Users Group Agenda Rationale and description DDL statements

More information

DB2 z/os Cloning What s new and faster?

DB2 z/os Cloning What s new and faster? DB2 z/os Cloning What s new and faster? Ulf Heinrich SEGUS Inc Session Code: A12 Thursday, May 5th, 2011 from 2:45 PM to 3:45 PM Platform: DB2 z/os Agenda/Content to be addressed Cloning basics: What type

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

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

A. Specify NUMTCB=10 and allow 1 WLM managed stored procedure address space per sysplex for AE1.

A. Specify NUMTCB=10 and allow 1 WLM managed stored procedure address space per sysplex for AE1. Volume A~B: 103 Questions Volume A Question No : 1 An external stored procedure, assigned to application environment AE1, should run in parallel to a maximum of 10 concurrent procedures. Which action will

More information

PBR RPN & Other Availability Improvements in Db2 12

PBR RPN & Other Availability Improvements in Db2 12 PBR RPN & Other Availability Improvements in Db2 12 Haakon Roberts IBM Session code: A11 07.11.2018 11:00-12:00 Platform: Db2 for z/os 1 Disclaimer IBM s statements regarding its plans, directions, and

More information

DB2 for z/os Utilities Update

DB2 for z/os Utilities Update Information Management for System z DB2 for z/os Utilities Update Haakon Roberts DE, DB2 for z/os & Tools Development haakon@us.ibm.com 1 Disclaimer Information regarding potential future products is intended

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

Understanding the Power and Pitfalls of Partitioning In V8, 9 and Beyond

Understanding the Power and Pitfalls of Partitioning In V8, 9 and Beyond Regional Forums The Power and Pitfalls of Partitioning Understanding the Power and Pitfalls of Partitioning In V8, 9 and Beyond Robert Goodman Sr DBA November 10 th, 2008 Session 2 San Ramon, CA Nov 10-11

More information

Cloning - What s new and faster?

Cloning - What s new and faster? Cloning - What s new and faster? SOURCE TARGET DB2 z/os Database cloning using Instant CloningExpert for DB2 z/os 2011 SOFTWARE ENGINEERING GMBH and SEGUS Inc. 1 Agenda/Content to be addressed Cloning

More information

How do I keep up with this stuff??

How do I keep up with this stuff?? Michael Cotignola Db2 Software Consultant BMC Software Db2 12 How do I keep up with this stuff?? Or. Add your tag line here So, what s new with Db2 12 We ll take a quick look at the usual suspects: Reliability,

More information

DB2 for z/os Utilities Best Practices Part 2. Haakon Roberts DB2 for z/os Development IBM Corporation. Transcript of webcast.

DB2 for z/os Utilities Best Practices Part 2. Haakon Roberts DB2 for z/os Development IBM Corporation. Transcript of webcast. DB2 for z/os Utilities Best Practices Part 2 Haakon Roberts DB2 for z/os Development 2011 IBM Corporation Transcript of webcast Slide 1 (00:00) My name is Haakon Roberts and I work for DB2 Silicon Valley

More information

DB2 Partitioning Choices, choices, choices

DB2 Partitioning Choices, choices, choices DB2 Partitioning Choices, choices, choices Phil Grainger BMC Software Date of presentation (01/11/2016) Session IB DB2 Version 8 Table Based Partitioning Version 8 introduced TABLE BASED PARTITIONING What

More information

DB2 10 Capturing Tuning and Trending for SQL Workloads - a resource and cost saving approach

DB2 10 Capturing Tuning and Trending for SQL Workloads - a resource and cost saving approach DB2 10 Capturing Tuning and Trending for SQL Workloads - a resource and cost saving approach Roy Boxwell SOFTWARE ENGINEERING GmbH Session Code: V05 15.10.2013, 11:30 12:30 Platform: DB2 z/os 2 Agenda

More information

DB2 11 for z/os Availability Enhancements. More Goodies Than You May Think

DB2 11 for z/os Availability Enhancements. More Goodies Than You May Think DB2 11 for z/os Availability Enhancements More Goodies Than You May Think Bart Steegmans bart_steegmans@be.ibm.com June 2014 - DB2 GSE user group meeting - Brussels Disclaimer and Trademarks Information

More information

IBM DB2 for z/os Application Developer Certification

IBM DB2 for z/os Application Developer Certification IBM DB2 for z/os Application Developer Certification Professional Certification Exam Copyright 2018 Computer Business International, Inc. www.cbi4you.com 1 What does it involve? IBM DB2 for z/os Application

More information

PBR RPN & Other Availability Enhancements In Db2 12 Dec IBM z Analytics

PBR RPN & Other Availability Enhancements In Db2 12 Dec IBM z Analytics PBR RPN & Other Availability Enhancements In Db2 12 Dec 2018 IBM z Analytics Disclaimer IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without notice at

More information

DB2 11 for z/os Utilities Update

DB2 11 for z/os Utilities Update DB2 11 for z/os Utilities Update Andy Lai DB2 Utilities Development atlai@us.ibm.com Insert Custom Session QR if Desired. 1 Disclaimer Copyright IBM Corporation 2014. All rights reserved. IBM s statements

More information

DB2 Analytics Accelerator Loader for z/os

DB2 Analytics Accelerator Loader for z/os Information Management for System z DB2 Analytics Accelerator Loader for z/os Agenda Challenges of loading to the Analytics Accelerator DB2 Analytics Accelerator for z/os Overview Managing the Accelerator

More information

Craig S. Mullins. A DB2 for z/os Performance Roadmap By Craig S. Mullins. Database Performance Management Return to Home Page.

Craig S. Mullins. A DB2 for z/os Performance Roadmap By Craig S. Mullins. Database Performance Management Return to Home Page. Craig S. Mullins Database Performance Management Return to Home Page December 2002 A DB2 for z/os Performance Roadmap By Craig S. Mullins Assuring optimal performance is one of a database administrator's

More information

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

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

More information

DB2 10 Capturing Tuning and Trending for SQL Workloads - a resource and cost saving approach. Roy Boxwell SOFTWARE ENGINEERING GmbH

DB2 10 Capturing Tuning and Trending for SQL Workloads - a resource and cost saving approach. Roy Boxwell SOFTWARE ENGINEERING GmbH 1 DB2 10 Capturing Tuning and Trending for SQL Workloads - a resource and cost saving approach Roy Boxwell SOFTWARE ENGINEERING GmbH 3 Agenda 1. DB2 10 technology used by SQL WorkloadExpert (WLX) 2. The

More information

CA Database Management Solutions for DB2 for z/os

CA Database Management Solutions for DB2 for z/os CA Database Management Solutions for DB2 for z/os Release Notes Version 17.0.00, Ninth Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Lessons Learned in Utility Management

Lessons Learned in Utility Management Jürgen Glag SOFTWARE ENGINEERING GmbH Düsseldorf, Germany juergen_glag@compuserve.com j.glag@seg.de Copyright Jürgen Glag, 1999 foil 01/39 Low consumption of CPU and elapsed time Compatibility with application

More information

Hash Access to DB2 Data Faster, Better, Cheaper

Hash Access to DB2 Data Faster, Better, Cheaper Hash Access to DB2 Data Faster, Better, Cheaper Kalpana Shyam, Karelle Cornwell Developers, DB2 for z/os, IBM Corp Session Code: A10 Wednesday, 10 November 2010, 11:00 AM - 12:00 PM Platform: DB2 10 for

More information

DB2 Users Group. September 8, 2005

DB2 Users Group. September 8, 2005 DB2 Users Group September 8, 2005 1 General Announcements September 13 RICDUG, Richmond DB2 Users Group, Richmond, VA www.ricdug.org September 18 TIB 2005195-1143 Removal of COBOL 2.2 TIB 2005236-1154

More information

Outline. Database Tuning. Ideal Transaction. Concurrency Tuning Goals. Concurrency Tuning. Nikolaus Augsten. Lock Tuning. Unit 8 WS 2013/2014

Outline. Database Tuning. Ideal Transaction. Concurrency Tuning Goals. Concurrency Tuning. Nikolaus Augsten. Lock Tuning. Unit 8 WS 2013/2014 Outline Database Tuning Nikolaus Augsten University of Salzburg Department of Computer Science Database Group 1 Unit 8 WS 2013/2014 Adapted from Database Tuning by Dennis Shasha and Philippe Bonnet. Nikolaus

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

Session: G03 No Magic to Improve DB2 for z/os Application Performance. Marcel Lévy Natixis. May 19, :30 p.m. 02:30 p.m. Platform: DB2 for z/os

Session: G03 No Magic to Improve DB2 for z/os Application Performance. Marcel Lévy Natixis. May 19, :30 p.m. 02:30 p.m. Platform: DB2 for z/os Session: G03 No Magic to Improve DB2 for z/os Application Performance Marcel Lévy Natixis May 19, 2008 01:30 p.m. 02:30 p.m. Platform: DB2 for z/os 1 Agenda Story of a DB2 application migration Measurement

More information

A Sneak Peak at DB2 9 for z/os

A Sneak Peak at DB2 9 for z/os IBM Software Group William Favero IBM S&D, West Region Senior Certified IT Software Specialist wfavero@attglobal.net Slide of 40 Shameless Self promotion http://blogs.ittoolbox.com/database/db2zos Slide

More information

DB2 11 *NEW* Availability Functions and Features

DB2 11 *NEW* Availability Functions and Features DB2 11 *NEW* Availability Functions and Features Session 16331 John Iczkovits iczkovit@us.ibm.com IBM March 2, 2015 Insert Custom Session QR if Desired. Agenda Availability for BIND/REBIND/DDL to break-in

More information

DB2 9 for z/os Selected Query Performance Enhancements

DB2 9 for z/os Selected Query Performance Enhancements Session: C13 DB2 9 for z/os Selected Query Performance Enhancements James Guo IBM Silicon Valley Lab May 10, 2007 10:40 a.m. 11:40 a.m. Platform: DB2 for z/os 1 Table of Content Cross Query Block Optimization

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

IBM DB2 10 for z/os beta. Reduce costs with improved performance

IBM DB2 10 for z/os beta. Reduce costs with improved performance IBM DB2 10 for z/os beta Reduce costs with improved performance TABLE OF CONTENTS SECTION I INTRODUCTION OF DB2 10 FOR Z/OS... 3 Executive Summary... 3 SECTION II PERFORMANCE AVAILABILITY... 5 Many performance

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

What it does not show is how to write the program to retrieve this data.

What it does not show is how to write the program to retrieve this data. Session: A16 IFI DATA: IFI you don t know, ask! Jeff Gross CA, Inc. 16 October 2008 11:45 12:45 Platform: DB2 for z/os Abstract The Instrumentation Facility Interface (IFI) can be a daunting resource in

More information

CA Database Management Solutions for DB2 for z/os

CA Database Management Solutions for DB2 for z/os CA Database Management Solutions for DB2 for z/os Release Notes Version 17.0.00, Fourth Edition This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter

More information

Understanding The Interaction Of z/os Workload Manager And DB2

Understanding The Interaction Of z/os Workload Manager And DB2 IBM Software Group Understanding The Interaction Of z/os Workload Manager And DB2 Ed Woods / IBM Corporation 2010 IBM Corporation Agenda Workload Manager Overview Important WLM Concepts And Terminology

More information

CA Rapid Reorg for DB2 for z/os

CA Rapid Reorg for DB2 for z/os PRODUCT SHEET CA Rapid Reorg for DB2 for z/os CA Rapid Reorg for DB2 for z/os CA Rapid Reorg for DB2 for z/os (CA Rapid Reorg) helps you perform quick and effective DB2 data reorganizations to help increase

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

Ten Breakthroughs That Changed DB2 Forever

Ten Breakthroughs That Changed DB2 Forever Ten Breakthroughs That Changed DB2 Forever Session Number 1066 Craig S. Mullins Mullins Consulting, Inc. http://www.craigsmullins.com http://mullinsconsultinginc.com Objectives 1 Gain an historical perspective

More information

GSE Belux DB2. Thursday 6 December DB2 V10 upgrade BNP Paribas Fortis

GSE Belux DB2. Thursday 6 December DB2 V10 upgrade BNP Paribas Fortis GSE Belux DB2 Thursday 6 December 2012 DB2 V10 upgrade experience @ BNP Paribas Fortis Agenda Configuration Business Case Install Setup Preparation Move to CM Move to NFM System monitoring 2 Configuration

More information

Table and Index Design: DB2 9 Strategies

Table and Index Design: DB2 9 Strategies Table and Index Design: DB2 9 Strategies Susan Lawson YL&A Yevich, Lawson & Assoc. Inc. 3309 Robbins Road PMB 226 Springfield, IL 62704 www.ylassoc.com www.db2expert.com IBM is a registered trademark of

More information

CA Performance Handbook

CA Performance Handbook SECTION 2: CHAPTERS 4 6 CA Performance Handbook for DB2 for z/os About the Contributors from Yevich, Lawson and Associates Inc. DAN LUKSETICH is a senior DB2 DBA. He works as a DBA, application architect,

More information

To REORG or not to REORG That is the Question. Kevin Baker BMC Software

To REORG or not to REORG That is the Question. Kevin Baker BMC Software To REORG or not to REORG That is the Question Kevin Baker BMC Software Objectives Identify I/O performance trends for DB pagesets Correlate reorganization benefits to I/O performance trends Understand

More information

An Introduction to purexml on DB2 for z/os

An Introduction to purexml on DB2 for z/os An Introduction to purexml on DB2 for z/os Information Management 1 2012 IBM Corporation Agenda Introduction Create a Table the XML Storage Model Insert a Row Storing XML Data SQL/XML XMLEXISTS, XMLQUERY,

More information

IDAA v4.1 PTF 5 - Update The Fillmore Group June 2015 A Premier IBM Business Partner

IDAA v4.1 PTF 5 - Update The Fillmore Group June 2015 A Premier IBM Business Partner IDAA v4.1 PTF 5 - Update The Fillmore Group June 2015 A Premier IBM Business Partner History The Fillmore Group, Inc. Founded in the US in Maryland, 1987 IBM Business Partner since 1989 Delivering IBM

More information

Db2 System Profile Monitoring

Db2 System Profile Monitoring Db2 System Profile Monitoring Denis Tronin CA Technologies Denis.Tronin@ca.com Réunion du Guide Db2 pour z/os France Mardi 10 Octobre 2017 CA Tour Opus, Paris-La Défense Abstract Db2 System Profile monitoring

More information

Deep Dive Into Storage Optimization When And How To Use Adaptive Compression. Thomas Fanghaenel IBM Bill Minor IBM

Deep Dive Into Storage Optimization When And How To Use Adaptive Compression. Thomas Fanghaenel IBM Bill Minor IBM Deep Dive Into Storage Optimization When And How To Use Adaptive Compression Thomas Fanghaenel IBM Bill Minor IBM Agenda Recap: Compression in DB2 9 for Linux, Unix and Windows New in DB2 10 for Linux,

More information