Presentation is loading. Please wait.

Presentation is loading. Please wait.

© 2010 IBM Corporation Information Management Basic Handling of DB2 Issue with IBM Support Anthony Reina - Accelerated Value Specialist

Similar presentations


Presentation on theme: "© 2010 IBM Corporation Information Management Basic Handling of DB2 Issue with IBM Support Anthony Reina - Accelerated Value Specialist"— Presentation transcript:

1 © 2010 IBM Corporation Information Management Basic Handling of DB2 Issue with IBM Support Anthony Reina - Accelerated Value Specialist aereina@ca.ibm.com

2 © 2010 IBM Corporation Information Management 2 The IBM Software Accelerated Value Program delivers a proactive, cost-reducing, and productivity enhancing advisory service. The program pairs you with an assigned team who build a foundational understanding of your overall environment. Through that understanding, the trusted partner works to facilitate faster deployment, lifecycle leadership, risk mitigation, and more by identifying ways to improve your environment, staff skill set, and processes. http://www-01.ibm.com/software/support/acceleratedvalue/ IBM Software Accelerated Value Program

3 © 2010 IBM Corporation Information Management 3 Agenda : Introduction – Why, What, and How? Using db2fodc for v9.7 for hang/performance issue Enabling and setting db2cos (DB2 call out script) The db2support Collecting db2support with OPT data The db2exfmt (access plan) Sending files to IBM. Related links and documents Gotchas Question/Answer

4 © 2010 IBM Corporation Information Management 4 Introduction Why there is a need for an action plan when issues occur?  Avoid confusion due to a standard response procedure.  Problem definition is immediately defined.  Correct diagnostic information is collected based on the issue reported.  Reduce overhead time, improve time to resolution.

5 © 2010 IBM Corporation Information Management 5 Introduction What information to collect?  Background Information : - Time when the problem occurred. - Conditions that currently exist on the system. - Any recent changes to the system (ie. HW, SW, others) - Operation/steps leading to the issue. - Steps taken to recover from the issue. - Time when DB2 or system return to normal. - Diagnostic data  Diagnostic Data

6 © 2010 IBM Corporation Information Management 6 Introduction How to collect diagnostic data? Type of Issuedb2fodc (V9.7) db2cosdb2supportOPTIMIZERdb2exfmt All type of issue Query performance Query non- performance Performance Hang Timeout/Deadlock

7 © 2010 IBM Corporation Information Management 7 db2fodc for v9.7 db2fodc o DB2 First Occurrence Data Capture process. Can be used to collect hang and performance issues. Diagnostic data collection usage : db2fodc –db - Output directory will be in the DIAGPATH directory. Can be customized as needed. Output directory will have a prefix of “FODC_Perf_ _ ”

8 © 2010 IBM Corporation Information Management 8 db2fodc for v9.7 Data to be collectedBASICFULL Snapshot46 Stacktrace aka call stacks35 vmstat200 Iostat200 db2perfcount02 db2trc01 latchtrace00 Data to be collectedValue os_iterations2 os_sleep30 db2pdstack_iterations2 db2pdstack_sleep120 db2monitor_sleep60 fullstack_sleep300 db2trc_size8mb ostrc_size8000000 ostrc_sleep30 announce_sleep15 no_waitOFF/ON (Default=OFF) Data to be collectedBASICFULL OS IterationOn db2_configOn basic_db2_configOn more_db2_configOn os_monitor_infoOn call_stacksOn db2pd_infoOn db2pd_dumpOn db2trcOn ostrcOn db2_monitoringOn extra_infoOn db2fodc -perf : refer to TOOLS OPTION of /bin/db2cos_perf db2fodc -hang : refer to TOOLS OPTION of /bin/db2cos_hang

9 © 2010 IBM Corporation Information Management 9 db2fodc for v9.7 Customize the db2fodc –perf full data collection Before After Actual Execution

10 © 2010 IBM Corporation Information Management 10 db2fodc for v9.7 Customize the db2fodc –hang basic to collect db2look. Before After

11 © 2010 IBM Corporation Information Management 11 db2fodc for v9.7 Execute the db2fodc –hang basic command. db2fodc output Additional db2look output.

12 © 2010 IBM Corporation Information Management 12 Enabling and setting db2cos DB2 Callout Script invoked by default when DB2 cannot continue processing. Can be used when diagnostic data is hard to capture (ie. locktimeout, deadlock, sqlcode, or trap). The db2cos script can be modified as needed. By default it only collects only DB2PD Instance related info. The default db2cos scripts is under /bin directory. Place modified db2cos scripts under /adm directory. This will be executed first if exist.

13 © 2010 IBM Corporation Information Management 13 Enabling and setting db2cos db2cos example usage :  Copy the /sqllib/bin/db2cos to /sqllib/adm/db2cos  Modify db2cos to capture snapshot and db2pd info.  Enable –catch flag to trigger db2cos script db2pdcfg –catch -911,2 locktype=V –alldbp db2pdcfg –catch -911,68 locktype=V –alldbp  Wait for problem reoccurence  To disable : db2pd –catch clear  To verify state : db2pd –catch status

14 © 2010 IBM Corporation Information Management 14 The db2support Collects environment data from client or server machine. Most important utility in collecting information for a DB2 issue. The following information is collected : db2diag.log All trap file Locklist files Dump files Buffer pool and table space Various system related files Output from various system commands db2cli.ini Command : “db2support. –d ” Output is created on the directory where command is run. Output filename is db2support.zip Db2support will collect all the files in the DIAGPATH incl. old db2diag.logs.

15 © 2010 IBM Corporation Information Management 15 Collecting db2support with OPT data and db2exfmt Collects additional optimizer (OPT) data. Used to investigate optimizer issues. Can be invoked via –sf and/or –cl option  -sf : SQL filename  -cl : Level of info to collect Level of information collected : 0 = collects only catalogs and db2look 1 = collect 0 plus db2exfmt 2 = collect 1 plus.db2service 3 = collect 2 plus db2batch Commands :  db2support. –d -sf -cl 1  db2support. –d -cl 0 Output will be part of the db2support.zip called db2supp_opt.zip - /OPTIMIZER.

16 © 2010 IBM Corporation Information Management 16 db2support with OPT data enhancements 1.Collect optimizer data for different OPTLEVEL including db2batch information.  db2support -d -c –cl 3 –sf -ol 0,1,2,3,5,7 –extenddb2batch 2.The –basic option collects only optimizer-related diagnostic information. 3.The –extenddb2batch collects db2batch information when –ol and –cl options are used. 4.No db2look and catalog information collected when “-nl | -nodb2look” and “-nc | -nocatalog” options are used.

17 © 2010 IBM Corporation Information Management 17 The DB2EXFMT (access plan) Captures information about the access plan, optimizer inputs, and environment of an SQL query. Helps to understand how the SQL query is compiled and executed. Shows how configuration parameter changes impact query performance. Indispensible tool for query problem determination. Explain information includes  Sequence of operations to process the query  Cost information  Predicates and selectivity estimates for each predicate  Statistics for all objects referenced in the SQL query at the time the explain information is captured.

18 © 2010 IBM Corporation Information Management 18 The DB2EXFMT tool (access plan) Explain tables must be created before the tool can be used.  SYSINSTALLOBJECTS() procedure – call sysproc.sysinstallobjects(‘EXPLAIN’,’C’,NULL, )  EXPLAIN.DDL – db2 –tvf …/sqllib/misc/EXPLAIN.DDL Using the db2exfmt tool :  db2 set current explain mode explain  db2 –tvf  db2 set current explain mode no  db2exfmt –d -1 –o or db2exfmt –d -g TIC –w -1 –n –s % -# 0 –o

19 © 2010 IBM Corporation Information Management 19 Sending files to IBM Submit files to IBM by using IBM Enhanced Customer Data Repository (ECuRep) Service site. Provides secure and central repository of submitting files to IBM. Important Notes :  Files must be in a compressed format.  Submit files only if a problem record is already opened.  IBM may provide information back via ECuRep as well.

20 © 2010 IBM Corporation Information Management 20 Sending files to IBM Filename convention : xxxx.bbb.ccc.yyy.yyy Where :xxxxx = PMR Number bbb = Branch ccc = Country Code yyy.yyy = Description of the file type. Example: 34143.055.724.zip How to submit files to the ftp server : 1.Use a FTP client to connect to ftp.ecurep.ibm.comftp.ecurep.ibm.com 2.Login as anonymous and enter your email address as the password. 3.Change the directory to /toibm/im 4.Change to binary transfer mode for example for a FTP connection from a Windows command line, enter: bin. 5.Upload your file. 6.Close your FTP client.

21 © 2010 IBM Corporation Information Management 21 Important Links/Documents Submitting files to IBM via ECuRep Collecting Data for DB2 Compiler Issues IBM developerWorks IBM Support Portal

22 © 2010 IBM Corporation Information Management 22 Gotchas :  Db2support will also collect db2fodc diagnostic data as well.  Collect db2cos data if stored outside the DIAGPATH directory.  Use “db2support…-sf -cl 1” for issues involving one query.  Use “db2support…-cl 0” for issues involviong more than one query.  Use db2exfmt tool to collect query access plan as needed or if more than one query is involved.  Advice support analyst via email once diagnostic files have been sent via ECuRep.

23 © 2010 IBM Corporation Information Management 23 Questions?


Download ppt "© 2010 IBM Corporation Information Management Basic Handling of DB2 Issue with IBM Support Anthony Reina - Accelerated Value Specialist"

Similar presentations


Ads by Google