Top Banner
DB2DART DART The Information Management Specialists Iqbal Goralwalla DB2Night Show October 14, 2011
48

DB2DART - DB2Night Show October 2011

Nov 21, 2014

Download

Documents

Laura Hood

A presentation looking at DB2DART with hints and tips for the DBA.
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: DB2DART - DB2Night Show October 2011

DB2DARTDART

The Information Management Specialists

Iqbal Goralwalla

DB2Night Show

October 14, 2011

Page 2: DB2DART - DB2Night Show October 2011

About Triton

• Formed in 1996

• IBM Premier Business Partner

• Largest independent DB2 Consultancy in the UK

The Information Management Specialists

• Largest independent DB2 Consultancy in the UK

• Strong team of highly experienced and certified DB2 specialists

• Work with customers across a range of sectors providing them with DB2 consultancy and support for both DB2 LUW and DB2 z/OS

• Preferred DB2 services supplier to IBM UK and others

Page 3: DB2DART - DB2Night Show October 2011

About Me

• Head of Midrange (DB2 on LUW) at Triton Consulting

• Principal Consultant on DB2 LUW

The Information Management Specialists

• Principal Consultant on DB2 LUW

• Experience of DB2 LUW since DB2 Common Server

• IBM Champion for Data Management

• Tendency to talk too much

Page 4: DB2DART - DB2Night Show October 2011

DB2DART

• DB2DART – An Overview

• My 3 Key DB2DARTs

The Information Management Specialists

• My 3 Key DB2DARTs

• My bonus DB2DART

• Anything on DB2DART and DPF?

• What about INSPECT?

• GOTCHAS

Page 5: DB2DART - DB2Night Show October 2011

db2pd

db2top

db2exfmt

• One of the less used performance reporting tools

DB2DART – An Overview

The Information Management Specialists

db2exfmt

db2support

db2diag

db2trc

db2dart

Why am I here?

tools

• Historically used with IBM support

• DBAs can use the tool –increases productivity

Page 6: DB2DART - DB2Night Show October 2011

DB2DART – An Overview

• Database Analysis and Reporting Tool

• “Offline” tool for checking the architectural correctness of a database

The Information Management Specialists

database� Checks validity of meta-data structures, page headers, row

headers, etc.

• Critical for investigating problems involving data corruption

• Runs against the data on disk� Not aware of what’s in the buffer pool

� May show false errors if users are connected to the database

Page 7: DB2DART - DB2Night Show October 2011

DB2DART – An Overview

• Granularity� Database: db2dart <db> /DB

� Tablespace: db2dart <db> /TS

The Information Management Specialists

� Tablespace: db2dart <db> /TS

� Table: db2dart <db> /T /TSI /OI

• Options for inspecting, formatting, and repairing data

• Run db2dart /H to see all of the supported options

Page 8: DB2DART - DB2Night Show October 2011

DB2DART – Inspecting data

The Information Management Specialists

Examples:

db2dart <db> /DB

db2dart <db> /TS /TSI 2

db2dart <db> /T /TSI 2 /OI 6

Page 9: DB2DART - DB2Night Show October 2011

DB2DART – Formatting data

The Information Management Specialists

Example: db2dart <db> /DD /TSI 2 /OI 6

Page 10: DB2DART - DB2Night Show October 2011

DB2DART – Repairing data

The Information Management Specialists

Page 11: DB2DART - DB2Night Show October 2011

DB2DART – My 3 Key DB2DARTsDARTs

1. Storage Reclamation and High Water Mark

2. Index Corruption

The Information Management Specialists

2. Index Corruption

3. Extracting Data

Page 12: DB2DART - DB2Night Show October 2011

Storage Reclamation – the DBA

dilemma

Deleted thousands of rows

Why is the space not being released?

The Information Management Specialists

rows

Dropped a BIG table

Reorged the table

Page 13: DB2DART - DB2Night Show October 2011

Storage Reclamation – HWM for DMS

tablespaces• High Water Mark (HWM) is the highest numbered page

that is currently allocated in a DMS tablespace

• HWM can be much higher than the number of pages

The Information Management Specialists

• HWM can be much higher than the number of pages currently in use due to:� Dropped tables or delete activity

� Offline table reorg using same tablespace

� Index reorg using “allow read or write access”

• Makes it difficult to release unused disk space for reuse

• HWM can be seen using LIST TABLESPACES SHOW DETAIL or GET SNAPSHOT FOR TABLESPACES

Page 14: DB2DART - DB2Night Show October 2011

Storage Reclamation – HWM for DMS

tablespaces

• LIST TABLESPACES SHOW DETAIL

The Information Management Specialists

Page 15: DB2DART - DB2Night Show October 2011

HWM – Dropped table (1)

DMS TABLESPACE

T1 T1

DMS TABLESPACE

The Information Management Specialists

Table Space HWMdoes NOT change

T2

T1

Drop table T2

Free

T1

5 pages

3 pages

2 pages

Used pages = 10 Used pages = 8

HWM = 10 HWM = 10

5 pages

3 pages

2 pages

Page 16: DB2DART - DB2Night Show October 2011

HWM – Dropped table (2)

DMS TABLESPACE

T1 Free

DMS TABLESPACE

The Information Management Specialists

Table Space HWMDOES change

T2

T1

Drop table T1

Free

5 pages

3 pages

2 pages

Used pages = 10 Used pages = 3

HWM = 10 HWM = 8

5 pages

3 pages

2 pages

T2

Page 17: DB2DART - DB2Night Show October 2011

HWM – Offline Table Reorg (1)

DMS TABLESPACE

T1

REORG TABLE T1

Free

DMS TABLESPACE

T1

INTERMEDIATE STATE

The Information Management Specialists

Table Space HWMINCREASES

Free

T1

Used pages = 5 Used pages = 4

HWM = 5 HWM = 11

5 pages

4 pages

6 pages

7 pages

T1Shadow Copy

Page 18: DB2DART - DB2Night Show October 2011

HWM – Offline Table Reorg (2)

DMS TABLESPACE

Free

REORG TABLE T1

T1

DMS TABLESPACE

T1

INTERMEDIATE STATE

Shadow

The Information Management Specialists

Table Space HWMDECREASES

T1Free

Used pages = 4Used pages = 4

HWM = 11 HWM = 4

7 pages

7 pages4 pages

4 pages

T1

Shadow Copy

Page 19: DB2DART - DB2Night Show October 2011

HWM headaches

• Space not released even though free extents available

• Redirected RESTORE needs space equal to or greater than the HWM

The Information Management Specialists

than the HWM

� All extents in DMS table spaces up to the HWM copied to the backup image.

� Tablespaces containers cannot be reduced below HWM

• ALTER TABLESPACE <drop container/reduce containers size> only affects extents above the HWM

Page 20: DB2DART - DB2Night Show October 2011

Storage Reclamation – the DBA

dilemma (DB2 9.1/9.5)

Shall I call IBMSupport? DB2DART

The Information Management Specialists

Support?

Not when I’m around!

Page 21: DB2DART - DB2Night Show October 2011

Storage Reclamation – DB2DART 1DART 1

• db2dart /DHWM – display table space and high-water mark information� A map of the extents in the table space, showing

The Information Management Specialists

� A map of the extents in the table space, showing objects owning them

� The ID and type of the object holding the high-water mark extent

� Amount of free extents and in-use extents below the high-water mark

� TIP: If online, use db2pdcfg –flushbp first (V9.1FP5, V9.5FP1)

Page 22: DB2DART - DB2Night Show October 2011

db2dart /DHWM

The Information Management Specialists

LIST TABLESPACES SHOW DETAIL

Page 23: DB2DART - DB2Night Show October 2011

db2dart /DHWM – Drop table ID 5

The Information Management Specialists

LIST TABLESPACES SHOW DETAIL

Page 24: DB2DART - DB2Night Show October 2011

Storage Reclamation – DB2DART

• db2dart /LHWM – Assists in lowering the high-water mark� Table space ID and desired high-water mark are required

The Information Management Specialists

� Table space ID and desired high-water mark are required

� May not be possible to actually lower it to the desired level

� Use "0" for the desired high-water mark to go as low as possible

� Result is a list of operations to execute (EXPORT/LOAD, REORG, etc.)

� Estimate of resulting in use and free extents below the high-water mark is displayed for each step

Page 25: DB2DART - DB2Night Show October 2011

db2dart /LHWM

The Information Management Specialists

Page 26: DB2DART - DB2Night Show October 2011

db2dart /LHWM – after REORG

The Information Management Specialists

Page 27: DB2DART - DB2Night Show October 2011

Storage Reclamation – DB2DART

• db2dart /RHWM – Removes empty SMP extents holding up the high-water mark

The Information Management Specialists

� DB2 9.5 – ALTER TABLESPACE <tbsp> REDUCE/DROP

►Drops/reduces containers to the table space’s high-water mark

► First removes empty SMP extents

►No need for db2dart /RHWM

Page 28: DB2DART - DB2Night Show October 2011

Storage Reclamation – DB2DART

enhancements• V9.1 FP4 – db2dart /DHWM and /LHWM can be

run against active/inconsistent database� IZ04647 http://www-

The Information Management Specialists

� IZ04647 http://www-01.ibm.com/support/docview.wss?uid=swg1IZ04647

• V9.1 FP5 – db2dart /DHWM is not correct when an empty SMP extent is holding the HWM� IZ07663 http://www-

01.ibm.com/support/docview.wss?uid=swg1IZ07663

Page 29: DB2DART - DB2Night Show October 2011

Storage Reclamation – DB2 9.7

• For a DMS or Automatic Storage table space created in DB2 9.7, you can use reclaimable storage to return unused storage to the system for reuse.

• For Automatic Storage table spaces, the REDUCE MAX

The Information Management Specialists

• For Automatic Storage table spaces, the REDUCE MAX option of ALTER TABLESPACE can be used to release all unused spaced

• For DMS, two steps are required to release the unused extents� The High Water can be reduced to match the number of

used extents with the LOWER HIGH WATER MARK option� The REDUCE, RESIZE or DROP options then be used

• Reclaiming storage is an online operation

Page 30: DB2DART - DB2Night Show October 2011

Index Corruption

• Possible causes� Hardware or software failure

� Killing an executing process (e.g., LOAD)

The Information Management Specialists

� Killing an executing process (e.g., LOAD)

� After migration from one system to another

• Symptoms� Bad page errors

� SQL0980C during a backup database command

� SQL0902C – database marked bad

Page 31: DB2DART - DB2Night Show October 2011

Index Corruption – the DBA dilemma

Shall I call IBMSupport?

Restore from backup?

DB2DART

The Information Management Specialists

Not when I’m around!

Page 32: DB2DART - DB2Night Show October 2011

Index Corruption – DB2DART 2DART 2

• Find out which indexes are problematic� db2dart <db> /DD /TSI <pool id> /OI <object id>� db2dart <db> /DI /TSI <pool id> /OI <object id>

The Information Management Specialists

� db2dart <db> /DI /TSI <pool id> /OI <object id>

• Mark indexes as invalid� db2dart <db> /MI /TSI <pool id> /OI <object id>

• Indexes recreated based on INDEXREC (database configuration parameter)

► RESTART► ACCCESS► Monitor using db2diag.log

Page 33: DB2DART - DB2Night Show October 2011

Index Corruption – DB2DART

• Indexes recreated:� First access of invalid index

� RESTART DATABASE

The Information Management Specialists

� RESTART DATABASE

� LOAD – Build phase

� Classic offline table reorg

• To prevent access to problematic index� LOCK TABLE IN EXCLUSIVE MODE

Page 34: DB2DART - DB2Night Show October 2011

Index Corruption – DB2DART –

Partitioned tables/indexes

• db2dart /MI requires table space ID and index object ID.� For partitioned indexes, use INDPARTITIONOBJECTID

The Information Management Specialists

� For partitioned indexes, use INDPARTITIONOBJECTID and INDPARTITIONTBSPACEID from SYSCAT.INDEXPARTITIONS.

Page 35: DB2DART - DB2Night Show October 2011

Extracting Data

• Table space or database is corrupt or inaccessible• Access to “bad/damaged” data causes an

instance crash

The Information Management Specialists

instance crash• Need to salvage data

� Cannot use SQL to select data� Cannot use Export� Restore from backup image

►Does one exist?►Circular logging?

Page 36: DB2DART - DB2Night Show October 2011

Extracting Data – the DBA dilemma

Shall I call IBMSupport? DB2DART

The Information Management Specialists

Support?

Not when I’m around!

Page 37: DB2DART - DB2Night Show October 2011

Extracting Data – DB2 DART 3DART 3

• db2dart <db> /DDEL• Dumped in delimited ASCII format• Prompted for

The Information Management Specialists

• Prompted for � table name (or ID), � table space ID, � starting page, � number of pages, and � output file name

• LONG VARCHAR or LOB data will not be dumped

Page 38: DB2DART - DB2Night Show October 2011

Extracting Data – DB2DART

• May require multiple invocations� Dump up to “bad/damaged” page using /DDEL option

Aborts on reaching corruption

The Information Management Specialists

►Aborts on reaching corruption

� Dump “bad/damaged” page using /DD option► Incorrupt data can be viewed

� Dump rest of pages after “bad/damaged” page using /DDEL option and appropriate start page

• Some data loss inevitable

Page 39: DB2DART - DB2Night Show October 2011

Backup Pending State (aka “Forced

backup”)

• LOAD with COPY NO (default)

• Logging strategy changed (circular to

The Information Management Specialists

• Logging strategy changed (circular to archival)

• LOGARCHIVE enabled

• LOGFILSIZ changed while using raw device for logging

Page 40: DB2DART - DB2Night Show October 2011

Backup Pending State – the DBA

dilemma

Do I really needto do a backup? DB2DART

The Information Management Specialists

to do a backup?

Not when I’m around!

Page 41: DB2DART - DB2Night Show October 2011

Backup Pending State – bonus DB2DARTDART

• db2dart <db> /CHST /WHAT DBBP OFF

The Information Management Specialists

Page 42: DB2DART - DB2Night Show October 2011

DB2DART – Does it work with DPF?

• Yes!

• Run db2dart on desired partition or on all partitions

The Information Management Specialists

partitions

• Use db2_all to run db2dart on all partitions in a single invocation

• Default destination of report file is in diagnostic directory

Page 43: DB2DART - DB2Night Show October 2011

DB2DART – IBM service options

• /ETS – extends the table limit in a 4 KB table space (DMS only), if possible

• /MT – marks table with drop-pending state

The Information Management Specialists

• /MT – marks table with drop-pending state� Needs password – supplied by IBM

• /IP – initializes the data page of a table as empty� Needs password – supplied by IBM

Page 44: DB2DART - DB2Night Show October 2011

What about INSPECT?

• Online “equivalent” of DB2DART

• Integrated into runtime engine resulting in performance gains

The Information Management Specialists

performance gains� Makes use of prefetchers and buffer pools

• Runs on all logical nodes in a partitioned system� Can be directed to run on specific nodes

• Can estimate row compression results for table, dictionary based on sample

Page 45: DB2DART - DB2Night Show October 2011

What about INSPECT?

• Granular: inspection can be on database, tablespace, or a table

• Results (unformatted) are written to the

The Information Management Specialists

• Results (unformatted) are written to the specified file (placed in diagnostic directory path). Use db2inspf to format results

Page 46: DB2DART - DB2Night Show October 2011

DB2DART vs. INSPECT

• INSPECT does not provide any of the formatting or repair options that db2dart provides

• Unlike DB2DART, INSPECT of a tablespace will only

The Information Management Specialists

• Unlike DB2DART, INSPECT of a tablespace will only process objects that reside in that tablespace. It will not inspect:� Corresponding index objects residing in a different

tablespace� LOB objects residing in a different tablespace� Note: running DB2DART on an INDEX tablespace would

not seek out the parent data

Page 47: DB2DART - DB2Night Show October 2011

DB2DART – Gotchas

• Security – user with authority to run the db2dart tool or with access to the db2dart output can gain access to information that they might not be

The Information Management Specialists

gain access to information that they might not be authorized for

• LOAD – ALLOW READ ACCESS option not supported if indexes marked invalid

Page 48: DB2DART - DB2Night Show October 2011

Summary & Conclusions

• DB2DART is a very powerful tool

• Can be used by DBAs to deal with:

The Information Management Specialists

• Can be used by DBAs to deal with:

� Storage Reclamation

� Index Corruption

� Extracting Data

� Database backup pending state

• Increases productivity