On slide 2 here I have a disclaimer about particular trademarks that are used in this presentation. Now let s go to slide 3.

Size: px
Start display at page:

Download "On slide 2 here I have a disclaimer about particular trademarks that are used in this presentation. Now let s go to slide 3."

Transcription

1 DB2 for z/os Best Practices DDF Connectivity John J. Campbell Distinguished Engineer DB2 for z/os Development 2011 IBM Corporation Transcript of webcast Slide 1 (00:00) Hello, this is John Campbell here a Distinguished Engineer in DB2 for z/os development. Welcome to today s web lecture about DDF connectivity. This is one of the web lectures in a whole series about DB2 for z/os best practices. Let s turn to slide 2. Slide 2 (00:17) On slide 2 here I have a disclaimer about particular trademarks that are used in this presentation. Now let s go to slide 3. Slide 3 (00:28) One of the most important things to understand here is the distinction between active threads and inactive connections. And those words, threads versus connections, is very impor-

2 tant, okay? So we are talking about active threads which are DBATs versus the inactive connections. There are two modes of running distributed threads controlled by a ZPARM called CMTSTAT. First of all you can set this to ACTIVE. In which case, every connection is a database access thread, a DBAT, a thread inside DB2. And it s held until the basic connection is broken. In other words, it is held until it is disconnected. Even when waiting for new client transactions. So you can clearly see that if you set CMTSTAT equals AC- TIVE, you can consume and hold on to a large number of database access threads. And this is very important prior to version 10 because the thread storage just like the regular allied threads. Most of this thread storage is held below the 2 gigabyte bar in the DBM1 address space. The other value for CMTSTAT is called INACTIVE, this is the default. And this is where we have this concept of thread pooling or DBAT pooling inside DB2. We used to have CMTSTAT equal to INACTIVE to strongly recommend. The DBAT is pooled and this applies to DRDA or it goes inactive if you are using private protocol when the connection issues a commit or a rollback. And a certain number of connections are met. So I ll repeat that, when you have CMTSTAT equal to INACTIVE, the DBAT is pooled if it is DRDA or it goes into inactive if it is private protocol when the connection issues a commit or rollback. What does that mean? It means we have pool of database access threads, DBATs in the case of DRDA of a certain size. And basically, when the application gets to a commit or rollback point, what we actually do, is dissociate the connection that was running the application from the database access thread and what we do is we part the connection which has a very low storage footprint and what we then do is put the database access thread, DBAT back into the pool so that it can be reused by other connections.

3 The second half of this chart 3 is very important. Because in order for the DBAT to be pooled and for the connection to go inactive for DRDA, certain connections have to be met. In other words, there is no WITH HOLD cursors, no Declare Global Temporary Tables on the connection, no LOB locators, and no package defined and running with KEEPDY- NAMIC YES. The opposite is true, like you have WITH HOLD cursors, DGTTs, LOB locators, and user KEEPDY- NAMIC, and these will stop the DBAT being pooled and the connection going inactive. So it is very important in a performance and highly available environment to make sure your applications do not have these conditions. So it is very important to close WITH HOLD cursors before commit and rollback. To basically close and drop DGTTs. And basically not to run with packages that are running with KEEPDY- NAMIC YES. Now let s turn to slide 4. Slide 4 (03:46) Now I m going to talk about, in more detail here, about inactive connections. And this is specific, really this discussion here is very specific to DRDA. Now remember that in version 10, private protocol finally goes away. So there is actually zero tolerance in DB2 version 10 for any private protocol. So most of this discussion in this presentation and web lecture is going to be focused on DRDA. So basically, for DRDA connections we have this thing called inactive connection support. We used to call this previously, type 2 inactive thread support. And this term, type 2 inactive thread support was very confusing. It s got absolutely nothing to do with threads at all. It s about connections. It s about pooled use of database access threads. And it is about connections going inactive. So a better description here, used in this slide here, is inactive connections. So what happens in a

4 well behaved application is that upon commit, the DBAT is marked in disconnected state, which means it s pooled. And it is put back in the pool of DBATs to be used by the connections and the connection becomes inactive. So basically the DBAT is back in the pool. It can be used by any of the other inactive connections, or any new connection coming through. Any new unit of work request that comes in on an existing connection, inactive connection, or new connection, will be dispatched on one of the pooled DBATs, if one exists. It is possible that MAXDBAT which is a throttle on the total number of database access threads may have already been reached. In which case there is no pooled DBAT available in the pool for use. If all the DBATs are currently in use, DB2 will create a new DBAT provided MAXDBAT has not already been reached. If MAXDBAT has been reached, then the request will be queued. So basically, we have this concept of pooled DBATs and after 200 state switches or 200 reuses of a DBAT then the DBAT is purged. In other words it is rejuvenated. Another point is that if you have a pulled DBAT that has been put back in the pool, and it hasn t been used for a certain period of time then we ll purge the DBAT as well. So we have a DB2 system s parameter called POOLI- NAC with a default of 120 seconds. So if have a pooled DBAT that hasn t been reused within a default of 2 minutes then we purge the DBAT. So use of inactive connection support is highly recommended and is the best for resource utilization. And in most situations a small number of database access threads, can typically be used to service a large number of connections. The number of database access threads is defined by a system parameter called MAXDBAT and the maximum number of connections is called CONDBAT. Again you can have

5 many more connections than you have database access threads. There is a picture in the bottom right hand corner here, which hopefully can be used to reinforce the information I have already given to you. So here you have in this simple picture here. You have the DDF address space and you have the DBM1 ID. And in this example here, we have basically 50 connections, but only 5 of them are active. And those are colored in blue. In the right hand side here, we have the DBM1 address space where we have a set of DBATs defined by MAXDBAT. In this case we actually have a pool with 9 DBATs which are pooled. Of which 5 of them are assigned to a connection. So as you can see here, we have 5 out of 50 connections which are active. And they are using 5 of the DBATs in the pool. That leaves 4 DBATs available in the pool to be used by an inactive connection that wakes up, or by a new connection coming through. Now let s turn on to slide 5. Slide 5 (07:44) I m now going to talk about inactive DBAT. I m not going to spend a lot of time on this. This is unique to private protocol. And as I said, this will be going away in version 10, and you must limit all use of private protocol and convert it over to DRDA before you migrate to version 10. So the concept of inactivity is very different in private protocol. Basically, the connections don t go inactive. Basically you have the concept of an inactive DBAT support. And we used to call this previously, the type 1 inactive thread. What happens here is that basically the DBAT memory footprint is reduced and the DBAT goes inactive. So we still hold on to the database access thread but we basically shrink down the memory footprint. So when a new unit of work request comes through on

6 that connection. We would use the DBAT to return to an active state and basically the memory footprint is expanded. So basically we are shrinking and expanding the memory footprint for the database access thread depending on whether we have work to do. So basically, when you ve got private protocol in this inactive DBAT support it is tied to the user s connection. There is no thread pooling like I described previously that we have for DRDA. So potentially with private protocol, you can consume a very large number of threads in order to support a large number of connections. The DB2 ZPARM, MAXTYPE1, controls how many DBATs using private protocol can go inactive. If the value of that ZPARM is set to zero, any DBAT that uses private protocol will stay active. In other words, if you set it to a non-zero value, this defines the maximum number of DBATs using private protocol that can be inactive concurrently. Now let s turn on to slide 6. Slide 6 (09:41) Over the next three slides here, I would like to talk through some of the instrumentation that is available for DDF. There are an awful a lot of counters in this particular space. And sometimes it s not clear based on the short name of the instrumentation counter. And even the longer name, as to what it really means. But probably more importantly, what are the critical information. So on slide 6 here, we ve got the output here of the DIS- PLAY DDF DETAIL command. And I ve used various color codes here. So if you look at the green ones to start with, this gives you information. So the DT parameter tells you basically whether the ZPARM is configured to have inactive or active. So A means active, inactive means I. CONDBAT

7 reflects the maximum inbound connections that are possible. And this should reflect the DB2 systems parameter, COND- BAT. MDBAT, reflects the maximum number of database access threads that are possible and this should reflect the DB2 systems parameter called MAXDBAT. Now the blue ones, counters here, are informational. Later on I m going to move to the red counters which are the most important. So what does ADBAT mean? It actually means the current number of DBATs. Both those assigned (assigned to connections to do work), plus those disconnected DBATs that are back in the pool that can be used by an inactive connection that wakes on or by a new connection coming through. We then have the next blue one DSCDBAT is the current number of disconnected DBATs in the pool. It s the number of pool DBATs that are available for reuse. And INACONN is the current number of inactive connections. Now, the two red counters are the ones to focus on. QUEDBAT is a cumulative counter incremented every time MAXDBAT is reached. Note carefully, it is only reset at DDF restart. So this will accumulate over time, going upwards until DDF is recycled. And obviously every time you reach MAXDBAT, then a new connection coming through or an existing inactive connection that wakes up, will have to wait until a pool connection becomes available. Sorry a pool DBAT becomes available. Then we have CONQUED, this is the current number of queued requests that are waiting to be serviced by the DBAT. This reflects the same thing here, in that we ve reached MAXDBAT and we have connection requests that are waiting to be serviced. Now let s turn on to slide 7. Slide 7 (12:25)

8 Now in slide 7 here, we have a section on the DB2 statistics report. It s called the Global DDF Activity section. And again, basically, I ve described these fields and highlighted them in blue, green, or red. And clearly some of these will map onto information that I have already given to you. What I want to do here is focus on the red counters. First of all, you ve got CUR QUEUED TYPE 2 INACT THR. This is the current number of connections queued for the DBAT. In other words, again this indicates queuing for DBAT as MAXDBAT is reached and we have either new connections coming through, waiting, or we have previous inactive connections that are now active and are waiting for a DBAT. So we have queuing occurring. Then we have DBAT QUEUED-MAXIMUM ACTIVE, this is the number of times that MAXDBAT was reached. And lastly we have a situation where CONV.DEALLOC-MAX.CONNECTED, this is the number of times CONDBAT was reached. And this is important because when CONDBAT is reached any new connections coming through will be rejected. So monitoring these red counters is very important. And now let s turn to the final slide. Slide 8. Slide 8 (13:48) Now what I want to talk here about is block fetching. This is a very important concept. Now what I m showing here in the bottom right hand corner here is a section, again, from the DB2 statistics report showing DRDA remote location section. So why is block fetching important? This is because if you have SQL requests that are not eligible for block fetch. Then each request at a very high level results in a message send and receive between the client or requester and the DB2 server. So the concept of block fetch and it particularly applies here to read cursors where you are pulling lots of rows.

9 Is that with block fetch enabled, DB2 will group rows that are retrieved by a query into a large block, potentially a large block of rows, that will fit into a message buffer. The advantage here is that it has the potential to significantly decrease the number of messages sent across the network between the client or requestor and the server. Most importantly, block fetch is used only with cursors that do not update or delete data. So if you have a cursor, a cursor that is defined cursor control select, that is defined for update or for delete, then that will disable block fetch. Now there are two ways of enabling block fetch for cursors. One is you can define the cursor, basically as being read only. You can say for fetch or for read only. Also, DB2 is clever enough to figure out that some cursors are implicitly read only because an order by a group by, distinct, or union for example. But some cursors are ambiguous. In other words you can t tell by looking at the SQL statement that it is read only. And one thing you can do as an application developer or systems administrator is to encourage block fetch for those ambiguous cursors. And a way to do that is to bind your static SQL packages with current data no. And that will encourage block fetch. So when you are looking at this section of the DB2 statistics report you need to distinguish between rows and blocks, the values. And basically if you end up with a high number of rows relative to the number of blocks, this is an indicator of block fetch efficiency. So here for example, this example, you can see that we have received almost 9000 rows, 8733 rows, but it is blocked into 23 blocks. This is an indicator of very high block efficiency. Anyway, this completes this particular web lecture on DDF connectivity and how to interpret the information you receive

10 in the display DDF command and also in the DB2 statistics trace. (16:40)

DDF Connectivity. John Campbell Distinguished Engineer DB2 for z/os Development IBM Corporation

DDF Connectivity. John Campbell Distinguished Engineer DB2 for z/os Development IBM Corporation DDF Connectivity John Campbell Distinguished Engineer DB2 for z/os Development CAMPBELJ@uk.ibm.com Disclaimer/Trademarks THE INFORMATION CONTAINED IN THIS DOCUMENT HAS NOT BEEN SUBMITTED TO ANY FORMAL

More information

DB2 for z/os Distributed Data Facility Questions and Answers

DB2 for z/os Distributed Data Facility Questions and Answers DB2 for z/os Distributed Data Facility Questions and Answers Michigan DB2 Users Group Robert Catterall, IBM rfcatter@us.ibm.com May 11, 2016 2016 IBM Corporation Agenda DDF monitoring and tuning DDF application

More information

DB2 for z/os Distributed Data Facility Questions and Answers

DB2 for z/os Distributed Data Facility Questions and Answers Robert Catterall, IBM rfcatter@us.ibm.com DB2 for z/os Distributed Data Facility Questions and Answers New England DB2 Users Group March 26, 2015 Information Management 2015 IBM Corporation Agenda Some

More information

How to Setup Application Server to Access DB2 z/os with High Availability

How to Setup Application Server to Access DB2 z/os with High Availability How to Setup Application Server to Access DB2 z/os with High Availability Maryela Weihrauch DE, IBM Silicon Valley Lab Aug 13 th, 2008 11:00 am #1330 Important Disclaimer THE INFORMATION CONTAINED IN THIS

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

Understanding Distributed Processing Inside DB2 for z/os. DB2 GSE Belux March2014 Paul Oostvogels BMC Software

Understanding Distributed Processing Inside DB2 for z/os. DB2 GSE Belux March2014 Paul Oostvogels BMC Software Understanding Distributed Processing Inside DB2 for z/os DB2 GSE Belux March2014 Paul Oostvogels BMC Software AGENDA Terminology clearing up the confusion Distributed threads What can I see? DDF and DB2

More information

Continuous Availability and Scalability with DB2 for z/os and WebSphere

Continuous Availability and Scalability with DB2 for z/os and WebSphere Continuous Availability and Scalability with DB2 for z/os and WebSphere Maryela Weihrauch Distinguished Engineer DB2 for z/os, IBM weihrau@in.ibm.com Pallavi Priyadarshini Architect JCC DB2 Connect, IBM

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

[Slide 2: disclaimer]

[Slide 2: disclaimer] Slide 1: Hello this is John Campbell from DB2 development, and welcome to this next lecture in this series related to DB2 for z/os best practices. The subject of today's web lecture is about the EDM pool

More information

Performance of environments using DB2 Connect Enterprise Edition

Performance of environments using DB2 Connect Enterprise Edition February 2008 Performance of environments using DB2 Connect Enterprise Edition 1 Table of Contents Objective...3 Executive summary...3 Summary...4 Hardware equipment and software environment...6 Host hardware

More information

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 2)

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 2) Robert Catterall, IBM rfcatter@us.ibm.com Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 2) New England DB2 Users Group September 17, 2015 Information Management 2015

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

Lecture Transcript While and Do While Statements in C++

Lecture Transcript While and Do While Statements in C++ Lecture Transcript While and Do While Statements in C++ Hello and welcome back. In this lecture we are going to look at the while and do...while iteration statements in C++. Here is a quick recap of some

More information

Ins & Outs of Distributed Processing in DB2 on z/os. Bill Arledge BMC Software, Inc.

Ins & Outs of Distributed Processing in DB2 on z/os. Bill Arledge BMC Software, Inc. Ins & Outs of Distributed Processing in DB2 on z/os Bill Arledge BMC Software, Inc. 6/9/2009 Overview Distributed Processing Fundamentals Distributed threads What can I see? WLM, enclaves and SRBs DDF

More information

DB2 for z/os Best Practices Optimizing Insert Performance - Part 1

DB2 for z/os Best Practices Optimizing Insert Performance - Part 1 DB2 for z/os Best Practices Optimizing Insert Performance - Part 1 John J. Campbell IBM Distinguished Engineer DB2 for z/os Development CampbelJ@uk.ibm.com 2011 IBM Corporation Transcript of webcast Slide

More information

Lesson 11 Transcript: Concurrency and locking

Lesson 11 Transcript: Concurrency and locking Lesson 11 Transcript: Concurrency and locking Slide 1: Cover Welcome to Lesson 11 of the DB2 on Campus Lecture Series. We are going to talk today about concurrency and locking. My name is Raul Chong and

More information

Lesson 13 Transcript: User-Defined Functions

Lesson 13 Transcript: User-Defined Functions Lesson 13 Transcript: User-Defined Functions Slide 1: Cover Welcome to Lesson 13 of DB2 ON CAMPUS LECTURE SERIES. Today, we are going to talk about User-defined Functions. My name is Raul Chong, and I'm

More information

DB2 Connect for DBAs. Frank C. Fillmore, Jr. Baltimore/Washington DB2 Users Group

DB2 Connect for DBAs. Frank C. Fillmore, Jr. Baltimore/Washington DB2 Users Group DB2 Connect for DBAs Frank C. Fillmore, Jr. Baltimore/Washington DB2 Users Group September 9, 2009 Agenda Architecture Configuration Performance and Monitoring Tooling Cool things I didn t know Case Studies

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

Lesson 4 Transcript: DB2 Architecture

Lesson 4 Transcript: DB2 Architecture Lesson 4 Transcript: DB2 Architecture Slide 1: Cover Welcome to Lesson 4 of the DB2 on campus series. Today we are going to talk about the DB2 architecture. My name is Raul Chong and I am the DB2 on Campus

More information

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1)

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1) Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1) Robert Catterall IBM March 12, 2014 Session 14610 Insert Custom Session QR if Desired. The genesis of this presentation

More information

DB2 for z/os Distributed Best Practices

DB2 for z/os Distributed Best Practices IBM Software Group DB2 for z/os Distributed Best Practices Adrian Burke DB2 for z/os SWAT team agburke@us.ibm,com 2014 IBM Corporation Agenda DB2 11 Gateway High Availability Driver and Connection Settings

More information

Lesson 9 Transcript: Backup and Recovery

Lesson 9 Transcript: Backup and Recovery Lesson 9 Transcript: Backup and Recovery Slide 1: Cover Welcome to lesson 9 of the DB2 on Campus Lecture Series. We are going to talk in this presentation about database logging and backup and recovery.

More information

6.001 Notes: Section 15.1

6.001 Notes: Section 15.1 6.001 Notes: Section 15.1 Slide 15.1.1 Our goal over the next few lectures is to build an interpreter, which in a very basic sense is the ultimate in programming, since doing so will allow us to define

More information

DB2 9 for z/os V9 migration status update

DB2 9 for z/os V9 migration status update IBM Software Group DB2 9 for z/os V9 migration status update July, 2008 Bart Steegmans DB2 for z/os L2 Performance Acknowledgement and Disclaimer i Measurement data included in this presentation are obtained

More information

The Present and Future of Large Memory in DB2

The Present and Future of Large Memory in DB2 The Present and Future of Large Memory in DB2 John B. Tobler Senior Technical Staff Member DB2 for z/os, IBM Michael Schultz Advisory Software Engineer DB2 for z/os, IBM Monday August 12, 2013 3:00PM -

More information

(Refer Slide Time: 1:26)

(Refer Slide Time: 1:26) Information Security-3 Prof. V Kamakoti Department of Computer science and Engineering Indian Institute of Technology Madras Basics of Unix and Network Administration Operating Systems Introduction Mod01,

More information

DB2 for z/os Stored Procedures Update

DB2 for z/os Stored Procedures Update Robert Catterall, IBM rfcatter@us.ibm.com DB2 for z/os Stored Procedures Update Michigan DB2 Users Group May 15, 2013 Information Management Agenda A brief review of DB2 for z/os stored procedure enhancements

More information

Understanding Distributed Processing Inside DB2 for z/os

Understanding Distributed Processing Inside DB2 for z/os Session: J05 Understanding Distributed Processing Inside DB2 for z/os Judy Quenet BMC Software May 8, 2007 9:20 a.m. 10:20 a.m. Platform: DB2 for z/os DB2 users are seeing more and more of their workload

More information

IBM DB2 for z/os Distributed Access Best Practices and Updates

IBM DB2 for z/os Distributed Access Best Practices and Updates IBM DB2 for z/os Distributed Access Best Practices and Updates Adrian Burke IBM agburke@us.ibm.com F08 -DB2 for z/os Distributed Access -Best Practices and Updates Tue, May 05, 2015 (02:15 PM -03:15 PM)

More information

LeakDAS Version 4 The Complete Guide

LeakDAS Version 4 The Complete Guide LeakDAS Version 4 The Complete Guide SECTION 4 LEAKDAS MOBILE Second Edition - 2014 Copyright InspectionLogic 2 Table of Contents CONNECTING LEAKDAS MOBILE TO AN ANALYZER VIA BLUETOOTH... 3 Bluetooth Devices...

More information

Section 0.3 The Order of Operations

Section 0.3 The Order of Operations Section 0.3 The Contents: Evaluating an Expression Grouping Symbols OPERATIONS The Distributive Property Answers Focus Exercises Let s be reminded of those operations seen thus far in the course: Operation

More information

Introduction to Databases, Fall 2005 IT University of Copenhagen. Lecture 10: Transaction processing. November 14, Lecturer: Rasmus Pagh

Introduction to Databases, Fall 2005 IT University of Copenhagen. Lecture 10: Transaction processing. November 14, Lecturer: Rasmus Pagh Introduction to Databases, Fall 2005 IT University of Copenhagen Lecture 10: Transaction processing November 14, 2005 Lecturer: Rasmus Pagh Today s lecture Part I: Transaction processing Serializability

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

Memory for MIPS: Leveraging Big Memory on System z to Enhance DB2 CPU Efficiency

Memory for MIPS: Leveraging Big Memory on System z to Enhance DB2 CPU Efficiency Robert Catterall, IBM rfcatter@us.ibm.com Memory for MIPS: Leveraging Big Memory on System z to Enhance DB2 CPU Efficiency Midwest DB2 Users Group December 5, 2013 Information Management Agenda The current

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

SharePoint Designer Advanced

SharePoint Designer Advanced SharePoint Designer Advanced SharePoint Designer Advanced (1:00) Thank you for having me here today. As mentioned, my name is Susan Hernandez, and I work at Applied Knowledge Group (http://www.akgroup.com).

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

More information

DB2 10 for z/os High Availability Updates for Distributed Access

DB2 10 for z/os High Availability Updates for Distributed Access DB2 10 for z/os High Availability Updates for Distributed Access Shivram Ganduri IBM, Senior Software Engineer August 12, 2011 Session Number : 9838 Disclaimer Copyright IBM Corporation [current year].

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

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting

Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Lesson 3 Transcript: Part 2 of 2 Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the DB2 on Campus Lecture Series. Today we are going to talk about tools and scripting. And this is part 2 of 2

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

SQL STORED ROUTINES. CS121: Relational Databases Fall 2017 Lecture 9

SQL STORED ROUTINES. CS121: Relational Databases Fall 2017 Lecture 9 SQL STORED ROUTINES CS121: Relational Databases Fall 2017 Lecture 9 SQL Functions 2 SQL queries can use sophisticated math operations and functions Can compute simple functions, aggregates Can compute

More information

Database Management System Prof. D. Janakiram Department of Computer Science & Engineering Indian Institute of Technology, Madras Lecture No.

Database Management System Prof. D. Janakiram Department of Computer Science & Engineering Indian Institute of Technology, Madras Lecture No. Database Management System Prof. D. Janakiram Department of Computer Science & Engineering Indian Institute of Technology, Madras Lecture No. # 20 Concurrency Control Part -1 Foundations for concurrency

More information

Fractional. Design of Experiments. Overview. Scenario

Fractional. Design of Experiments. Overview. Scenario Design of Experiments Overview We are going to learn about DOEs. Specifically, you ll learn what a DOE is, as well as, what a key concept known as Confounding is all about. Finally, you ll learn what the

More information

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1)

Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1) Robert Catterall, IBM rfcatter@us.ibm.com Key Metrics for DB2 for z/os Subsystem and Application Performance Monitoring (Part 1) New England DB2 Users Group September 17, 2015 Information Management 2015

More information

Media-Ready Network Transcript

Media-Ready Network Transcript Media-Ready Network Transcript Hello and welcome to this Cisco on Cisco Seminar. I m Bob Scarbrough, Cisco IT manager on the Cisco on Cisco team. With me today are Sheila Jordan, Vice President of the

More information

Win-Back Campaign- Re-Engagement Series

Win-Back Campaign- Re-Engagement Series Win-Back Campaign- Re-Engagement Series At this point the re-engagement campaign has ended, so if the prospect still hasn t responded it s time to turn up the heat. NOTE: In the emails below, everywhere

More information

Transcriber(s): Aboelnaga, Eman Verifier(s): Yedman, Madeline Date Transcribed: Fall 2010 Page: 1 of 9

Transcriber(s): Aboelnaga, Eman Verifier(s): Yedman, Madeline Date Transcribed: Fall 2010 Page: 1 of 9 Page: 1 of 9 0:00 1 R1 The color s not going to show a little bit, but okay. Okay. So, um, a plus b quantity cubed, you said, means Stephanie a plus b times a plus b times a plus b /R1 3 R1 Okay, so you

More information

Object-Oriented Analysis and Design Prof. Partha Pratim Das Department of Computer Science and Engineering Indian Institute of Technology-Kharagpur

Object-Oriented Analysis and Design Prof. Partha Pratim Das Department of Computer Science and Engineering Indian Institute of Technology-Kharagpur Object-Oriented Analysis and Design Prof. Partha Pratim Das Department of Computer Science and Engineering Indian Institute of Technology-Kharagpur Lecture 06 Object-Oriented Analysis and Design Welcome

More information

For Volunteers An Elvanto Guide

For Volunteers An Elvanto Guide For Volunteers An Elvanto Guide www.elvanto.com Volunteers are what keep churches running! This guide is for volunteers who use Elvanto. If you re in charge of volunteers, why not check out our Volunteer

More information

CS 112 Project Assignment: Visual Password

CS 112 Project Assignment: Visual Password CS 112 Project Assignment: Visual Password Instructor: Dan Fleck Overview In this project you will use Python to implement a visual password system. In the industry today there is ongoing research about

More information

Lecture 05 I/O statements Printf, Scanf Simple statements, Compound statements

Lecture 05 I/O statements Printf, Scanf Simple statements, Compound statements Programming, Data Structures and Algorithms Prof. Shankar Balachandran Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 05 I/O statements Printf, Scanf Simple

More information

Inline LOBs (Large Objects)

Inline LOBs (Large Objects) Inline LOBs (Large Objects) Jeffrey Berger Senior Software Engineer DB2 Performance Evaluation bergerja@us.ibm.com Disclaimer/Trademarks THE INFORMATION CONTAINED IN THIS DOCUMENT HAS NOT BEEN SUBMITTED

More information

COPYRIGHTED MATERIAL. Starting Strong with Visual C# 2005 Express Edition

COPYRIGHTED MATERIAL. Starting Strong with Visual C# 2005 Express Edition 1 Starting Strong with Visual C# 2005 Express Edition Okay, so the title of this chapter may be a little over the top. But to be honest, the Visual C# 2005 Express Edition, from now on referred to as C#

More information

DB2 for z/os Best Practices Recommendations from DB2 Health Check Studies: Operations

DB2 for z/os Best Practices Recommendations from DB2 Health Check Studies: Operations DB2 for z/os Best Practices Recommendations from DB2 Health Check Studies: Operations John Campbell & Florence Dubois DB2 for z/os User Technology db2zinfo@us.ibm.com 2012 IBM Corporation Transcript of

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

Get comfortable using computers

Get comfortable using computers Mouse A computer mouse lets us click buttons, pick options, highlight sections, access files and folders, move around your computer, and more. Think of it as your digital hand for operating a computer.

More information

(Refer Slide Time: 00:26)

(Refer Slide Time: 00:26) Programming, Data Structures and Algorithms Prof. Shankar Balachandran Department of Computer Science and Engineering Indian Institute Technology, Madras Module 07 Lecture 07 Contents Repetitive statements

More information

Workload Insights Without a Trace - Introducing DB2 z/os SQL tracking SOFTWARE ENGINEERING GMBH and SEGUS Inc. 1

Workload Insights Without a Trace - Introducing DB2 z/os SQL tracking SOFTWARE ENGINEERING GMBH and SEGUS Inc. 1 Workload Insights Without a Trace - Introducing DB2 z/os SQL tracking 2011 SOFTWARE ENGINEERING GMBH and SEGUS Inc. 1 Agenda What s new in DB2 10 What s of interest for geeks in DB2 10 What s of interest

More information

High Performance Computer Architecture Prof. Ajit Pal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

High Performance Computer Architecture Prof. Ajit Pal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur High Performance Computer Architecture Prof. Ajit Pal Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 23 Hierarchical Memory Organization (Contd.) Hello

More information

Lesson 14 Transcript: Triggers

Lesson 14 Transcript: Triggers Lesson 14 Transcript: Triggers Slide 1: Cover Welcome to Lesson 14 of DB2 on Campus Lecture Series. Today, we are going to talk about Triggers. My name is Raul Chong, and I'm the DB2 on Campus Program

More information

A3 Computer Architecture

A3 Computer Architecture A3 Computer Architecture Engineering Science 3rd year A3 Lectures Prof David Murray david.murray@eng.ox.ac.uk www.robots.ox.ac.uk/ dwm/courses/3co Michaelmas 2000 1 / 1 2: Introduction to the CPU 3A3 Michaelmas

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

DB2 Data Sharing Then and Now

DB2 Data Sharing Then and Now DB2 Data Sharing Then and Now Robert Catterall Consulting DB2 Specialist IBM US East September 2010 Agenda A quick overview of DB2 data sharing Motivation for deployment then and now DB2 data sharing /

More information

Input (part 2: input models)

Input (part 2: input models) Input (part 2: input models) Dealing with diversity Saw lots of diversity in devices actual details of devices (e.g., device drivers) is a real pain how do we deal with the diversity? Need a model (abstraction)

More information

introduction to Programming in C Department of Computer Science and Engineering Lecture No. #40 Recursion Linear Recursion

introduction to Programming in C Department of Computer Science and Engineering Lecture No. #40 Recursion Linear Recursion introduction to Programming in C Department of Computer Science and Engineering Lecture No. #40 Recursion Linear Recursion Today s video will talk about an important concept in computer science which is

More information

Lesson 5 Transcript: Client Connectivity

Lesson 5 Transcript: Client Connectivity Lesson 5 Transcript: Client Connectivity Slide 1: Cover Welcome to lesson 5 of the DB2 on Campus Series. Today we are going to talk about client connectivity. My name is Raul Chong, and I'm the DB2 on

More information

If Statements, For Loops, Functions

If Statements, For Loops, Functions Fundamentals of Programming If Statements, For Loops, Functions Table of Contents Hello World Types of Variables Integers and Floats String Boolean Relational Operators Lists Conditionals If and Else Statements

More information

(Refer Slide Time: 06:01)

(Refer Slide Time: 06:01) Data Structures and Algorithms Dr. Naveen Garg Department of Computer Science and Engineering Indian Institute of Technology, Delhi Lecture 28 Applications of DFS Today we are going to be talking about

More information

The Present and Future of Large Memory in DB2. Jay Yothers DB2 for z/os Development, IBM

The Present and Future of Large Memory in DB2. Jay Yothers DB2 for z/os Development, IBM The Present and Future of Large Memory in DB2 Jay Yothers DB2 for z/os Development, IBM Moore s Law and Mainframe Evolution The observation made in 1965 by Gordon Moore, that density of transistors on

More information

Design and Analysis of Algorithms Prof. Madhavan Mukund Chennai Mathematical Institute. Week 02 Module 06 Lecture - 14 Merge Sort: Analysis

Design and Analysis of Algorithms Prof. Madhavan Mukund Chennai Mathematical Institute. Week 02 Module 06 Lecture - 14 Merge Sort: Analysis Design and Analysis of Algorithms Prof. Madhavan Mukund Chennai Mathematical Institute Week 02 Module 06 Lecture - 14 Merge Sort: Analysis So, we have seen how to use a divide and conquer strategy, we

More information

(Refer Slide Time: 2:20)

(Refer Slide Time: 2:20) Data Communications Prof. A. Pal Department of Computer Science & Engineering Indian Institute of Technology, Kharagpur Lecture -23 X.25 and Frame Relay Hello and welcome to today s lecture on X.25 and

More information

CS 126 Lecture A5: Computer Architecture

CS 126 Lecture A5: Computer Architecture Outline CS 16 Lecture A5: Computer Architecture Introduction Single-cycle TOY design CS16 1-1 Randy Wang What We Have What We Want to Do repeat fetch instruction; update PC; decode instruction; execute

More information

Without further ado, let s go over and have a look at what I ve come up with.

Without further ado, let s go over and have a look at what I ve come up with. JIRA Integration Transcript VLL Hi, my name is Jonathan Wilson and I m the service management practitioner with NHS Digital based in the United Kingdom. NHS Digital is the provider of services to the National

More information

Database management system Prof. D. Janakiram Department of Computer Science and Engineering Indian Institute of Technology, Madras

Database management system Prof. D. Janakiram Department of Computer Science and Engineering Indian Institute of Technology, Madras Database management system Prof. D. Janakiram Department of Computer Science and Engineering Indian Institute of Technology, Madras Lecture 25 Basic 2-phase & 3-phase Commit protocol In the last lecture,

More information

(Refer Slide Time: 00:02:00)

(Refer Slide Time: 00:02:00) Computer Graphics Prof. Sukhendu Das Dept. of Computer Science and Engineering Indian Institute of Technology, Madras Lecture - 18 Polyfill - Scan Conversion of a Polygon Today we will discuss the concepts

More information

Welcome to Moodle! How To Moodle

Welcome to Moodle! How To Moodle Welcome to Moodle! The MH Vicars School Moodle site is where you ll find all the online components of your Vicars curriculum. For the following year, this will include quizzes and access to multimedia

More information

Chapter 2. DB2 concepts

Chapter 2. DB2 concepts 4960ch02qxd 10/6/2000 7:20 AM Page 37 DB2 concepts Chapter 2 Structured query language 38 DB2 data structures 40 Enforcing business rules 49 DB2 system structures 52 Application processes and transactions

More information

Microprocessors and Microcontrollers Prof. Santanu Chattopadhyay Department of E & EC Engineering Indian Institute of Technology, Kharagpur

Microprocessors and Microcontrollers Prof. Santanu Chattopadhyay Department of E & EC Engineering Indian Institute of Technology, Kharagpur Microprocessors and Microcontrollers Prof. Santanu Chattopadhyay Department of E & EC Engineering Indian Institute of Technology, Kharagpur Lecture - 09 8085 Microprocessors (Contd.) (Refer Slide Time:

More information

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and

Hello, and welcome to another episode of. Getting the Most Out of IBM U2. This is Kenny Brunel, and Hello, and welcome to another episode of Getting the Most Out of IBM U2. This is Kenny Brunel, and I'm your host for today's episode which introduces wintegrate version 6.1. First of all, I've got a guest

More information

New Features Guide Sybase ETL 4.9

New Features Guide Sybase ETL 4.9 New Features Guide Sybase ETL 4.9 Document ID: DC00787-01-0490-01 Last revised: September 2009 This guide describes the new features in Sybase ETL 4.9. Topic Page Using ETL with Sybase Replication Server

More information

Unity 1.0 Troubleshooting Guide

Unity 1.0 Troubleshooting Guide Unity 1.0 Troubleshooting Guide Troubleshooting Utilities MediaNet Analyzer Version 1.0 runs only on the Macintosh and does not ship with Unity 1.0. It is available on the Knowledge Center Website. It

More information

Module - P7 Lecture - 15 Practical: Interacting with a DBMS

Module - P7 Lecture - 15 Practical: Interacting with a DBMS Introduction to Modern Application Development Prof. Tanmai Gopal Department of Computer Science and Engineering Indian Institute of Technology, Madras Module - P7 Lecture - 15 Practical: Interacting with

More information

Using SQL Developer. Oracle University and Egabi Solutions use only

Using SQL Developer. Oracle University and Egabi Solutions use only Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Identify menu items of Oracle SQL Developer Create a

More information

COMP 430 Intro. to Database Systems. Encapsulating SQL code

COMP 430 Intro. to Database Systems. Encapsulating SQL code COMP 430 Intro. to Database Systems Encapsulating SQL code Want to bundle SQL into code blocks Like in every other language Encapsulation Abstraction Code reuse Maintenance DB- or application-level? DB:

More information

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet.

The name of our class will be Yo. Type that in where it says Class Name. Don t hit the OK button yet. Mr G s Java Jive #2: Yo! Our First Program With this handout you ll write your first program, which we ll call Yo. Programs, Classes, and Objects, Oh My! People regularly refer to Java as a language that

More information

(Refer Slide Time: 4:00)

(Refer Slide Time: 4:00) Principles of Programming Languages Dr. S. Arun Kumar Department of Computer Science & Engineering Indian Institute of Technology, Delhi Lecture - 38 Meanings Let us look at abstracts namely functional

More information

Storing Data: Disks and Files

Storing Data: Disks and Files Storing Data: Disks and Files CS 186 Fall 2002, Lecture 15 (R&G Chapter 7) Yea, from the table of my memory I ll wipe away all trivial fond records. -- Shakespeare, Hamlet Stuff Rest of this week My office

More information

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions

Course contents. Overview: Goodbye, calculator. Lesson 1: Get started. Lesson 2: Use cell references. Lesson 3: Simplify formulas by using functions Course contents Overview: Goodbye, calculator Lesson 1: Get started Lesson 2: Use cell references Lesson 3: Simplify formulas by using functions Overview: Goodbye, calculator Excel is great for working

More information

Speech 2 Part 2 Transcript: The role of DB2 in Web 2.0 and in the IOD World

Speech 2 Part 2 Transcript: The role of DB2 in Web 2.0 and in the IOD World Speech 2 Part 2 Transcript: The role of DB2 in Web 2.0 and in the IOD World Slide 1: Cover Welcome to the speech, The role of DB2 in Web 2.0 and in the Information on Demand World. This is the second speech

More information

Counter & LED (LED Blink)

Counter & LED (LED Blink) 1 T.R.E. Meeting #1 Counter & LED (LED Blink) September 17, 2017 Contact Info for Today s Lesson: President Ryan Muller mullerr@vt.edu 610-573-1890 Learning Objectives: Learn how to use the basics of Arduino

More information

End to end performance of WebSphere environments with Linux on System z

End to end performance of WebSphere environments with Linux on System z End to end performance of WebSphere environments with Linux on System z Session 9291 Martin Kammerer kammerer@de.ibm.com Feb 26, 2008 4:30-5:30 Trademarks The following are trademarks of the International

More information

Understanding The Importance Of Workload Manager And DB2

Understanding The Importance Of Workload Manager And DB2 IBM Software Group Understanding The Importance Of Workload Manager And DB2 Ed Woods / IBM Corporation 2009 IBM Corporation Agenda Workload Manager Overview Important WLM Concepts And Terminology How DB2

More information

CSC 261/461 Database Systems Lecture 20. Spring 2017 MW 3:25 pm 4:40 pm January 18 May 3 Dewey 1101

CSC 261/461 Database Systems Lecture 20. Spring 2017 MW 3:25 pm 4:40 pm January 18 May 3 Dewey 1101 CSC 261/461 Database Systems Lecture 20 Spring 2017 MW 3:25 pm 4:40 pm January 18 May 3 Dewey 1101 Announcements Project 1 Milestone 3: Due tonight Project 2 Part 2 (Optional): Due on: 04/08 Project 3

More information

CMPS 181, Database Systems II, Final Exam, Spring 2016 Instructor: Shel Finkelstein. Student ID: UCSC

CMPS 181, Database Systems II, Final Exam, Spring 2016 Instructor: Shel Finkelstein. Student ID: UCSC CMPS 181, Database Systems II, Final Exam, Spring 2016 Instructor: Shel Finkelstein Student Name: Student ID: UCSC Email: Final Points: Part Max Points Points I 15 II 29 III 31 IV 19 V 16 Total 110 Closed

More information

DB2 11 for z/os Application Functionality (Check out these New Features) Randy Ebersole IBM

DB2 11 for z/os Application Functionality (Check out these New Features) Randy Ebersole IBM DB2 11 for z/os Application Functionality (Check out these New Features) Randy Ebersole IBM ebersole@us.ibm.com Please note IBM s statements regarding its plans, directions, and intent are subject to change

More information

Continuing with whatever we saw in the previous lectures, we are going to discuss or continue to discuss the hardwired logic design.

Continuing with whatever we saw in the previous lectures, we are going to discuss or continue to discuss the hardwired logic design. Computer Organization Part I Prof. S. Raman Department of Computer Science & Engineering Indian Institute of Technology Lecture 10 Controller Design: Micro programmed and hard wired (contd) Continuing

More information

2

2 1 2 Each application program which will execute using SQL statements require a few basic inclusions of generated code. The DECLARE statements have been generated using the DCLGEN option of the DB2 Interactive

More information

Fundamentals of Operations Research. Prof. G. Srinivasan. Department of Management Studies. Indian Institute of Technology, Madras. Lecture No.

Fundamentals of Operations Research. Prof. G. Srinivasan. Department of Management Studies. Indian Institute of Technology, Madras. Lecture No. Fundamentals of Operations Research Prof. G. Srinivasan Department of Management Studies Indian Institute of Technology, Madras Lecture No. # 13 Transportation Problem, Methods for Initial Basic Feasible

More information