XML Storage in DB2 Basics and Improvements Aarti Dua DB2 XML development July 2009

Size: px
Start display at page:

Download "XML Storage in DB2 Basics and Improvements Aarti Dua DB2 XML development July 2009"

Transcription

1 IBM Software Group XML Storage in DB2 Basics and Improvements Aarti Dua DB2 XML development July 2009

2 Agenda Basics - XML Storage in DB2 Major storage enhancements Base Table Row Storage in DB2 9.5 Usage and tools Compression Storage improvement in DB2 9.7 XML Data Area Compression Usage and tools Upgrade considerations How all these improvements work together Summary/ Conclusion 2

3 XML Storage in DB2 The Basics Native XML Support in DB2 Introduced in DB2 9 DB2 can store, index and query XML Fixed XML schema per XML column is optional Indexes for specific attributes and elements XML can be used as the type of a column in a table: create table t (docid int, doc xml) Alter table t add column doc2 xml In DB2 9, XML support was available only on Unicode databases DB2 9.5 and onwards, Unicode restriction has been lifted 3

4 Storage Objects XML Data Area (XDA) Stores XML documents 1 XDA object per table Similar to DAT object for table data, XDA object stores XML data Base Table (DAT object) Stores XML descriptor Stored in the base table row in the XML column Contains information needed to locate the XML document in the XDA 4

5 Storage Objects Cont d Regions index System index 1 regions index per table with XML column Stores the RID of the XML documents in the XDA Index type XRGN in syscat.sysindexes syscat.sysindexes INDSCHEMA INDNAME TABNAME INDEXTYPE SYSIBM SQL TABLE1 XRGN 5

6 Storage Objects Cont d DAT Object (rel. Data) INX Object (Indexes) ID PR27 DOC (XML) Regions Index PR28 ACC XDA Object (XML Data) Like LOBs, XML data is stored separately from the base table. Unlike LOBs, XML data is buffered in the buffer pool. 6

7 Regions in a XML document XML documents can be larger than page size To store them XML documents are split into smaller regions A region Single-rooted subtree of nodes Region must fit on a single page Region can be smaller than a page 1 R R R1 7

8 Page Size for XML Regions Index Larger documents get split into regions Max. doc size: 2GB, spans many pages 4K Pages 8K Pages 32k Pages. Fewer regions per document are better for performance. Choose page size depending on document size, larger pages are better! 8

9 Agenda Basics - XML Storage in DB2 Major storage enhancements Base Table Row Storage in DB2 9.5 Usage and tools Compression Storage improvement in DB2 9.7 XDA Compression Usage and tools Upgrade considerations How all these improvements work together Summary/ Conclusion 9

10 Base Table Row Storage (aka. Inlining) Without use of Inlining All XML documents are stored in the XDA 2 step process to store & fetch docs Go through regions index Expensive! What is Inlining Store small XML documents in the XML column in the base table row Direct access to the XML documents No inserts, updates and fetches from the regions index No XDA storage needed for inlined documents Inlined documents can make use of row compression Better performance! 10

11 DB2 9.5: Base Table Inlining DAT Object (rel. Data) ID DOC (XML) PR27 PR28 ACC INX Object (Indexes) Regions Index Much smaller regions index, if most (or all!) documents are inlined. XDA Object (XML Data) 11

12 Inlining - Usage Create Table Stmt create table <table name> (<column name> xml INLINE LENGTH <integer>) Alter Table Stmt New XML column alter table <table name> add column <column name> xml INLINE LENGTH <integer> Modifying inline length alter table <table name> alter column <xml column name> set inline length <integer> 12

13 Small Example Create table sampletab ( docid int, xmldoc xml) Insert into sampletab values ( 1, <x><y>hello</y><z>world!</z></x> ) docid Xmldoc 1 XDA descriptor Regions Index Alter table sampletab alter column xmldoc set inline length 3000 Insert into sampletab values ( 2, <x><y>hello</y><z>world!</z></x> ) XDA <x><y>hello</y> ><z>world!</z> </x> 2 XDA descriptor <x><y>hello</y><z>world!</z></x> 13

14 How Can I Find the Inline Length of a Column SYSCAT.SYSCOLUMNS catalog Provides information on the columns of tables INLINE_LENGTH column shows Inline length specified for the column of the table 0 if no inline length is specified TABNAME COLNAME INLINE_LENGTH SAMPLETAB T1 XMLDOC XMLDOC

15 Inlining Cont d Conditions for document to be inlined Document must span only 1 region Bounded by inline size stated in the DDL Inline Length Restrictions Can increase the length but cannot decrease Inline lengths are based on Page size Row size Max inline length: Min inline length:

16 DB2 Info Center Refer to CREATE TABLE DDL Note: There is an additional 2 bytes of storage used by each row when VALUE COMPRESSION is active for that row. 16

17 Inlining Cont d Compress inlined XML documents Enable data row compression No additional setup is required to compress inlined XML! Side Effect of Inlining Increases base table row length Less rows per page Queries that only read relational columns may suffer 17

18 18 IBM Software Group DB2 Information Management Software Functions supporting Inlining Support is available in DB2 9.7 ADMIN_IS_INLINED Retrieves information about inline data for a XML, BLOB, CLOB or DBCLOB column Returns SMALLINT with 1 for inlined 0 for non-inlined NULL for NULL inputs SELECT PK, ADMIN_IS_INLINED(xml_doc1) as IS_INLINED from TAB1 PK IS_INLINED record(s) selected.

19 19 IBM Software Group DB2 Information Management Software Functions supporting Inlining Function ADMIN_EST_INLINE_LENGTH Support added in DB2 9.7 Returns Estimate of the inline length required to inline data Or negative value if the data cannot be inlined If the value is already inlined, Actual length of inline data Supports XML, CLOB, BLOB and DBCLOB columns SELECT PK, ADMIN_IS_INLINED(xml_doc1) as IS_INLINED, ADMIN_EST_INLINE_LENGTH (xml_doc1) as EST_INLINE_LENGTH from TAB1 PK IS_INLINED EST_INLINE_LENGTH record(s) selected.

20 Financial OLTP with FIXML - 1/3 Storage TPOX benchmark, Customer/Account documents: Order documents: Security documents: 4 20 kb 1 2 kb 3 10 kb 3.6M documents total, Page size: 16kb DAT pages XDA pages Regions index pages Total database size (GB) DB2 9 21, ,600 17, (100%) DB2 9.5 (more compact tree storage) 21, ,448 15, (70%) DB inlining 628, (66%) DB inlining + compression 259, (32%) 20

21 Performance Results 21

22 Agenda Basics - XML Storage in DB2 Major storage enhancements Base Table Row Storage in DB2 9.5 Usage and tools Compression Storage improvement in DB2 9.7 XDA Compression Usage and tools Upgrade considerations How all these improvements work together Summary/ Conclusion 22

23 XDA Compression Feature available in DB2 9.7 Extends DB2 row compression feature to the XDA Compress XML documents stored in the XDA In DB2 9.7 and onwards, when compression is enabled on a table Applies to the table (DAT) object *AND* the XDA object if it exists Separate XML dictionary XML dictionary is stored in the XDA object Data dictionary (as in DB2 9.0) is stored in the DAT object Steps leading to compression of documents in the XDA Enable compression on the table Automatic dictionary creation Triggers after 2MB of data in the XDA Compression of documents 23

24 Usage IBM Software Group DB2 Information Management Software Enable/ Disable Compression No new syntax introduced CREATE TABLE table1 ( docid int, docname varchar(20), doc xml) COMPRESS YES; ALTER TABLE table1 COMPRESS NO; Automatic dictionary creation (ADC) Triggers when data in the XDA crosses 2MB threshold Can be triggered during Insert/ Import LOAD Insert Redistribute (in DPF environment) Explicit ways to create XML Dictionary No new syntax introduced 24 REORG TABLE table1 LONGLOBDATA RESETDICTIONARY; DB2 LOAD from input.file of del REPLACE KEEPDICTIONARY INTO table1;

25 XDA Compression - Details Compression is applied to the documents if Compression is enabled on the table XML dictionary exists Decompression occurs upon access of the XML document When page is accessed in the bufferpool Range Partitioned tables Each partition has an XML dictionary Supported in DPF environment Same behavior as in Serial mode Decompressed when data is fetched from a DB2 node Decompressed data is transported between nodes 25

26 XDA Compression - Benefits Reduced storage needs for XML documents Up to 79% reduction is storage size of the XDA Better performance due to less I/O Import Runstats REORG LOAD Queries 26

27 XDA Compression Cont d Limitation XDA Compression is not supported on tables with XML column(s) that were created prior to the DB2 9.7 release To enable XDA compression on tables created using DB2 9 or DB2 9.5, migrate XML data via Online Table Move Export data Drop table Create table Import/ Load data Export data Truncate table Add XML Col Import/ Load data 27

28 XDA Compression ADMIN views and table functions ADMINTABINFO administrative view Associated table function ADMIN_GET_TAB_INFO_V97 Check whether XML dictionary exists Column XML_DICTIONARY_SIZE SELECT SUBSTR(TABSCHEMA, 1, 10) TBSCHEMA, SUBSTR(TABNAME, 1, 10) TBNAME, XML_DICTIONARY_SIZE, DICTIONARY_SIZE FROM SYSIBMADM.ADMINTABINFO WHERE TABNAME LIKE 'T%' TBSCHEMA TBNAME XML_DICTIONARY_SIZE DICTIONARY_SIZE ADUA T 0 0 ADUA T

29 XDA Compression ADMIN Views and Table Functions ADMINTABCOMPRESSINFO administrative view Associated table function ADMIN_GET_TAB_COMPRESS_INFO_V97 Information regarding compression of DATA and XML objects New column OBJECT_TYPE XML or DATA SELECT SUBSTR(TABSCHEMA, 1, 10) TBSCHEMA, SUBSTR(TABNAME, 1, 10) TBNAME, OBJECT_TYPE, COMPRESS_ATTR, DICT_BUILDER, ROWS_SAMPLED FROM SYSIBMADM.ADMINTABCOMPRESSINFO WHERE TABNAME LIKE 'T%' TBSCHEMA TBNAME OBJECT_TYPE COMPRESS_ATTR DICT_BUILDER ROWS_SAMPLED ADUA T DATA N NOT BUILT 0 ADUA T XML N NOT BUILT 0 ADUA T1 DATA Y REORG 1 ADUA T1 XML Y REORG 1 29

30 Should I enable Compression? How to estimate benefits of compression? Use ADMIN_GET_TAB_COMPRESS_INFO_V97 2 Modes of execution REPORT - default mode ESTIMATE SELECT SUBSTR(TABSCHEMA, 1, 10) TBSCHEMA, SUBSTR(TABNAME, 1, 10) TBNAME, OBJECT_TYPE, COMPRESS_ATTR, DICT_BUILDER, ROWS_SAMPLED, PAGES_SAVED_PERCENT FROM TABLE (SYSPROC.ADMIN_GET_TAB_COMPRESS_INFO_V97('ADUA', 'T', 'ESTIMATE')) as T; TBSCHEMA TBNAME OBJECT_TYPE COMPRESS_ATTR DICT_BUILDER ROWS_SAMPLED PAGES_SAVED_ PERCENT ADUA T DATA N TABLE FUNCTION 1 63 ADUA T XML N TABLE FUNCTION

31 Agenda Basics - XML Storage in DB2 Major storage enhancements Base Table Row Storage in DB2 9.5 Usage and tools Compression Storage improvement in DB2 9.7 XDA Compression Usage and tools Upgrade considerations How all these improvements work together Summary/ Conclusion 31

32 Upgrade Considerations DB2 9 DB2 9.5 Compact storage Seen up to 54% reduction in XML storage DB2 9.5 DB2 9.7 Change in the storage format of the XML documents Storage format of DB2 9 and DB2 9.5 Type-1 XML record format Storage format of DB2 9.7 Type-2 XML record format Some DB2 9.7 features require Type-2 XML record format XDA Compression Redistribute 32

33 Upgrade Considerations Cont d Change in XML Record Format A table cannot contain XML documents in both formats Without any data migration In DB2 9.7, a table with XML documents in Type-1 record format will continue to store documents in Type-1 format How to determine the record format of a table ADMINTABINFO administrative view & ADMIN_GET_TAB_INFO_V97 table function Column XML_RECORD_TYPE Values 1 if Type-1 XML record format 2 if Type-2 XML record format NULL if table has no XML columns 33

34 Upgrade Considerations Cont d SELECT SUBSTR(TABSCHEMA, 1, 10) TBSCHEMA, SUBSTR(TABNAME, 1, 10) TBNAME, XML_RECORD_TYPE FROM SYSIBMADM.ADMINTABINFO WHERE TABNAME LIKE 'T%' TBSCHEMA ADUA ADUA ADUA TBNAME T T1 T2 XML_RECORD_TYPE

35 Upgrade Considerations Cont d How to migrate XML data into Type-2 storage format Online Table Move Export data Drop table Create table Import/ Load data Export data Truncate table Add XML Col Import/ Load data 35

36 Putting it all together XML Storage feature Enhanced storage Base Table Row Storage XDA Compression When can it be used In DB By default In DB When workload involves small XML documents - Need to enable the table In DB When workload involves large XML documents - Need to enable the table - Requires Type-2 XML record format 36

37 Conclusion To remember - XML storage format has changed in DB2 9.7 Depending on the workload, make an informed decision on how to store XML in DB2 Compacted storage introduced in DB2 9.5 Base Table Row Storage XDA Compression The right XML storage option can make a huge impact on Performance! Performance! and Performance! 37

38 Acknowledgements Thanks to the following people for reviewing the document and for their valuable feedback Matthias Nicola Christina Lee Susanne Englert Susan Malaika 38

39 Further reading XML storage 9r7/index.jsp?topic=/com.ibm.db2.luw.xml.doc/doc/ c html Data Compression 9r7/index.jsp?topic=/com.ibm.db2.luw.admin.perf.d oc/doc/c html 39

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

DB2 ADAPTIVE COMPRESSION - Estimation, Implementation and Performance Improvement

DB2 ADAPTIVE COMPRESSION - Estimation, Implementation and Performance Improvement DB2 ADAPTIVE COMPRESSION - Estimation, Implementation Somraj Chakrabarty (somrajob@gmail.com) DBA Manager Capgemini Technology Services India Limited 13 March 2017 DB2 Adaptive compression is a technique

More information

IBM DB2 UDB V7.1 Family Fundamentals.

IBM DB2 UDB V7.1 Family Fundamentals. IBM 000-512 DB2 UDB V7.1 Family Fundamentals http://killexams.com/exam-detail/000-512 Answer: E QUESTION: 98 Given the following: A table containing a list of all seats on an airplane. A seat consists

More information

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

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

More information

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

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

IBM DB2 9.7 for Linux, UNIX, and Windows Storage Optimization

IBM DB2 9.7 for Linux, UNIX, and Windows Storage Optimization IBM DB2 9.7 for Linux, UNIX, and Windows Storage Optimization Compression options with SAP Applications regarding > Space Savings > Performance Benefits > Resource Impact Thomas Rech, Hans-Jürgen Moldowan,

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

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

DB2 스토리지최적화 v10.1 한국아이시스김명훈차장

DB2 스토리지최적화 v10.1 한국아이시스김명훈차장 DB2 스토리지최적화 v10.1 한국아이시스김명훈차장 1 목 차 1. DB2 Compression 1) DB2 Compress (version 별 ) 2) Why Compress? 3) Row Compression 4) Other Compression (index, lob, backup, archive log) 5) Estimate & Compress Table

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

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

Introduction to IBM DB2

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

More information

Multidimensional Clustering (MDC) Tables in DB2 LUW. DB2Night Show. January 14, 2011

Multidimensional Clustering (MDC) Tables in DB2 LUW. DB2Night Show. January 14, 2011 Multidimensional Clustering (MDC) Tables in DB2 LUW DB2Night Show January 14, 2011 Pat Bates, IBM Technical Sales Professional, Data Warehousing Paul Zikopoulos, Director, IBM Information Management Client

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

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

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

Pass IBM C Exam

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

More information

CAPITALIZING On DB2 LUW V9.7 Capabilities - A Data Management Feature Presentation

CAPITALIZING On DB2 LUW V9.7 Capabilities - A Data Management Feature Presentation CAPITALIZING On DB2 LUW V9.7 Capabilities - A Data Management Feature Presentation Bill Minor IBM bminor@ca.ibm.com Session Code: D01 May 11, 2010 12:30-1:30 PM Platform: DB2 for Linux, UNIX, Windows Speaker

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

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

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

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

More information

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

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

Improving PowerCenter Performance with IBM DB2 Range Partitioned Tables

Improving PowerCenter Performance with IBM DB2 Range Partitioned Tables Improving PowerCenter Performance with IBM DB2 Range Partitioned Tables 2011 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Oracle Alter Table Add Primary Key Using Index

Oracle Alter Table Add Primary Key Using Index Oracle Alter Table Add Primary Key Using Index Partition open Syntax for Schema Objects and Parts in SQL Statements One or more columns of a table, a partitioned table, an index-organized table, or a cluster

More information

The DB2Night Show Episode #88. Real Time Warehousing with IBM InfoSphere Warehouse V10

The DB2Night Show Episode #88. Real Time Warehousing with IBM InfoSphere Warehouse V10 The DB2Night Show Episode #88 Real Time Warehousing with IBM InfoSphere Warehouse V10 Pat Bates, WW Technical Sales for Big Data and Warehousing, jpbates@us.ibm.com June 26, 2012 June 26, 2012 Deployment

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 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

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 9 DBA exam 731 prep, Part 2: Data placement

DB2 9 DBA exam 731 prep, Part 2: Data placement DB2 9 DBA exam 731 prep, Part 2: Skill Level: Introductory Dwaine Snow (dsnow@us.ibm.com) Senior DB2 Product Manager IBM Toronto Lab 05 Jul 2006 Learn how to create DB2 databases, and about the mechanisms

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

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

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

Middle-Tier Database Caching for e-business

Middle-Tier Database Caching for e-business Discussion of Middle-Tier Database Caching for e-business Joon Wong System Testing IBM Toronto Lab Outline ƒ Limitations and Restrictions ƒ Counter Examples ƒ Performance Issues ƒ Experimental Results

More information

Navigating the pitfalls of cross platform copies

Navigating the pitfalls of cross platform copies Navigating the pitfalls of cross platform copies Kai Stroh, UBS Hainer GmbH Overview Motivation Some people are looking for a way to copy data from Db2 for z/ OS to other platforms Reasons include: Number

More information

Update Table Schema Sql Server 2008 Add Column After

Update Table Schema Sql Server 2008 Add Column After Update Table Schema Sql Server 2008 Add Column After ALTER COLUMN ENCRYPTION KEY (Transact-SQL) Applies to: SQL Server (SQL Server 2008 through current version), Azure SQL Database, the owner will remain

More information

NoVA MySQL October Meetup. Tim Callaghan VP/Engineering, Tokutek

NoVA MySQL October Meetup. Tim Callaghan VP/Engineering, Tokutek NoVA MySQL October Meetup TokuDB and Fractal Tree Indexes Tim Callaghan VP/Engineering, Tokutek 2012.10.23 1 About me, :) Mark Callaghan s lesser-known but nonetheless smart brother. [C. Monash, May 2010]

More information

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

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

More information

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

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

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

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

More information

Enhancements and New Features in Oracle 12c Summarized

Enhancements and New Features in Oracle 12c Summarized Enhancements and New Features in Oracle 12c Summarized In this blog post I would be highlighting few of the features that are now available on Oracle Database 12cRelease. Here listing below in a summarized

More information

Module 9: Managing Schema Objects

Module 9: Managing Schema Objects Module 9: Managing Schema Objects Overview Naming guidelines for identifiers in schema object definitions Storage and structure of schema objects Implementing data integrity using constraints Implementing

More information

XML Index Overview for DB2 9 for z/os

XML Index Overview for DB2 9 for z/os DB2 z/os XML Core Development & Solutions XML Index Overview for DB2 9 for z/os Rick Chang, Xiaopeng Xiong 10/5/2009 2009 IBM Corporation Agenda 1. XML Index Creation by Rick Chang 1. PureXML Basics. 2.

More information

DB2 11 and Beyond Celebrating 30 Years of Superior Technology

DB2 11 and Beyond Celebrating 30 Years of Superior Technology #IDUG DB2 11 and Beyond Celebrating 30 Years of Superior Technology Maryela Weihrauch, Distinguished Engineer, DB2 for z/os weihrau@us.ibm.com Session 1 March 2014, DB2 for z/os Track Disclaimer Information

More information

Data types String data types Numeric data types Date, time, and timestamp data types XML data type Large object data types ROWID data type

Data types String data types Numeric data types Date, time, and timestamp data types XML data type Large object data types ROWID data type Data types Every column in every DB2 table has a data type. The data type influences the range of values that the column can have and the set of operators and functions that apply to it. You specify the

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

Lecture 4. ISAM and B + -trees. Database Systems. Tree-Structured Indexing. Binary Search ISAM. B + -trees

Lecture 4. ISAM and B + -trees. Database Systems. Tree-Structured Indexing. Binary Search ISAM. B + -trees Lecture 4 and Database Systems Binary Multi-Level Efficiency Partitioned 1 Ordered Files and Binary How could we prepare for such queries and evaluate them efficiently? 1 SELECT * 2 FROM CUSTOMERS 3 WHERE

More information

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002

Table Compression in Oracle9i Release2. An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 An Oracle White Paper May 2002 Table Compression in Oracle9i Release2 Executive Overview...3 Introduction...3 How It works...3 What can be compressed...4 Cost and

More information

Oracle Database 11g Release 2 for SAP Advanced Compression. Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany)

Oracle Database 11g Release 2 for SAP Advanced Compression. Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany) Oracle Database 11g Release 2 for SAP Advanced Compression Christoph Kersten Oracle Database for SAP Global Technology Center (Walldorf, Germany) Implicit Compression Efficient Use

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

To include or not include? That is the question.

To include or not include? That is the question. To include or not include? That is the question. Donna Di Carlo BMC Software Session Code: F12 Wednesday, 16 October 2013 14:45 Platform: DB2 for z/os 2 Agenda Provide an overview of index include columns

More information

Oracle Database 10g Extensibility Framework:

Oracle Database 10g Extensibility Framework: Oracle Database 10g Extensibility Framework: Building, Deploying, and Managing Data Cartridges Geoff Lee Principal Product Manager, Oracle Corporation Geoff.Lee@oracle.com Agenda Overview Oracle Database

More information

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager

Oracle Advanced Compression: Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager Oracle Advanced : Reduce Storage, Reduce Costs, Increase Performance Bill Hodak Principal Product Manager The following is intended to outline our general product direction. It is intended for information

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

SQL Server 2014 Highlights der wichtigsten Neuerungen In-Memory OLTP (Hekaton)

SQL Server 2014 Highlights der wichtigsten Neuerungen In-Memory OLTP (Hekaton) SQL Server 2014 Highlights der wichtigsten Neuerungen Karl-Heinz Sütterlin Meinrad Weiss March 2014 BASEL BERN BRUGG LAUSANNE ZUERICH DUESSELDORF FRANKFURT A.M. FREIBURG I.BR. HAMBURG MUNICH STUTTGART

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

IBM. Database Database overview. IBM i 7.1

IBM. Database Database overview. IBM i 7.1 IBM IBM i Database Database overview 7.1 IBM IBM i Database Database overview 7.1 Note Before using this information and the product it supports, read the information in Notices, on page 39. This edition

More information

Query Evaluation Overview, cont.

Query Evaluation Overview, cont. Query Evaluation Overview, cont. Lecture 9 Feb. 29, 2016 Slides based on Database Management Systems 3 rd ed, Ramakrishnan and Gehrke Architecture of a DBMS Query Compiler Execution Engine Index/File/Record

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

Indexing survival guide for SQL 2016 In-Memory OLTP. Ned Otter SQL Strategist

Indexing survival guide for SQL 2016 In-Memory OLTP. Ned Otter SQL Strategist Indexing survival guide for SQL 2016 In-Memory OLTP Ned Otter SQL Strategist About me SQL Server DBA since 1995 MCSE Data Platform Passionate about SQL Server Obsessed with In-Memory Agenda Editions Indexes

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

SQL: Data De ni on. B0B36DBS, BD6B36DBS: Database Systems. h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 3

SQL: Data De ni on. B0B36DBS, BD6B36DBS: Database Systems. h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 3 B0B36DBS, BD6B36DBS: Database Systems h p://www.ksi.m.cuni.cz/~svoboda/courses/172-b0b36dbs/ Lecture 3 SQL: Data De ni on Mar n Svoboda mar n.svoboda@fel.cvut.cz 13. 3. 2018 Czech Technical University

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

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

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255.

TINYINT[(M)] [UNSIGNED] [ZEROFILL] A very small integer. The signed range is -128 to 127. The unsigned range is 0 to 255. MySQL: Data Types 1. Numeric Data Types ZEROFILL automatically adds the UNSIGNED attribute to the column. UNSIGNED disallows negative values. SIGNED (default) allows negative values. BIT[(M)] A bit-field

More information

Taming a Terabyte of XML Data with DB2 on Intel Xeon Processor 7400 Series

Taming a Terabyte of XML Data with DB2 on Intel Xeon Processor 7400 Series Taming a Terabyte of XML Data with DB2 on Intel Xeon Processor 7400 Series Agustin Gonzalez, Intel Matthias Nicola, IBM Silicon Valley Lab Session 2623 Agenda Motivation & Use Cases DB2 purexml TPoX Benchmark

More information

Using Relational Databases for Digital Research

Using Relational Databases for Digital Research Using Relational Databases for Digital Research Definition (using a) relational database is a way of recording information in a structure that maximizes efficiency by separating information into different

More information

DB2 for z/os Stored Procedure support in Data Server Manager

DB2 for z/os Stored Procedure support in Data Server Manager DB2 for z/os Stored Procedure support in Data Server Manager This short tutorial walks you step-by-step, through a scenario where a DB2 for z/os application developer creates a query, explains and tunes

More information

Oracle Database In-Memory

Oracle Database In-Memory Oracle Database In-Memory Mark Weber Principal Sales Consultant November 12, 2014 Row Format Databases vs. Column Format Databases Row SALES Transactions run faster on row format Example: Insert or query

More information

XML Technical Overview. Bill Arledge, Consulting Product Manager BMC Software Inc.

XML Technical Overview. Bill Arledge, Consulting Product Manager BMC Software Inc. XML Technical Overview Bill Arledge, Consulting Product Manager BMC Software Inc. 11/10/2008 Agenda What is XML? Why is XML important to your business? PureXML in DB2 9 Physical implementation The logical

More information

Creating and Managing Tables Schedule: Timing Topic

Creating and Managing Tables Schedule: Timing Topic 9 Creating and Managing Tables Schedule: Timing Topic 30 minutes Lecture 20 minutes Practice 50 minutes Total Objectives After completing this lesson, you should be able to do the following: Describe the

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

In-Memory Tables and Natively Compiled T-SQL. Blazing Speed for OLTP and MOre

In-Memory Tables and Natively Compiled T-SQL. Blazing Speed for OLTP and MOre In-Memory Tables and Natively Compiled T-SQL Blazing Speed for OLTP and MOre Andy Novick SQL Server Consultant SQL Server MVP since 2010 Author of 2 books on SQL Server anovick@novicksoftware.com www.novicksoftware.com

More information

DB2 11 for z/os Overview DUGI Massimiliano Castellini DB2 Advisor

DB2 11 for z/os Overview DUGI Massimiliano Castellini DB2 Advisor DB2 11 for z/os Overview DUGI 2014 Massimiliano Castellini DB2 Advisor 50th Anniversary of the Mainframe 7 April 1964-2014 DB2 for z/os Customer Trends Proliferation of mobile and other network-connected

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

IBM Optim Integrated Data Management

IBM Optim Integrated Data Management IBM Optim Integrated Data Management Szymon Kwapiszewski Jacek Lempart Agenda Information Management Brand at Krakow Software Lab Data life cycle DBA s life Storage example 2 Information Management brand

More information

Oracle. Exam Questions 1Z Oracle 11g: Advanced PL/SQL. Version:Demo. 1Z0-146 Exam Questions Demo https://www.passcertsure.

Oracle. Exam Questions 1Z Oracle 11g: Advanced PL/SQL. Version:Demo. 1Z0-146 Exam Questions Demo https://www.passcertsure. Oracle Exam Questions 1Z0-146 Oracle 11g: Advanced PL/SQL Version:Demo 1. Identify two strategies against SQL injection. (Choose two.) A. Using parameterized queries with bind arguments. B. Use subprograms

More information

Vinod Kumar M Technology Evangelist DB and BI Microsoft Corporation

Vinod Kumar M Technology Evangelist DB and BI Microsoft Corporation Vinod Kumar M Technology Evangelist DB and BI Microsoft Corporation www.extremeexperts.com Session Objectives And Takeaways Session Objectives Why data compression? Describe data compression in SQL Server

More information

Optimizing Storage with SAP and Oracle Database 12c O R A C L E W H I T E P A P E R M A Y

Optimizing Storage with SAP and Oracle Database 12c O R A C L E W H I T E P A P E R M A Y Optimizing Storage with SAP and Oracle Database 12c O R A C L E W H I T E P A P E R M A Y 2 0 1 7 Table of Contents Disclaimer 1 Introduction 2 Storage Efficiency 3 Index (Key) Compression and Bitmap Indexes

More information

Column Stores vs. Row Stores How Different Are They Really?

Column Stores vs. Row Stores How Different Are They Really? Column Stores vs. Row Stores How Different Are They Really? Daniel J. Abadi (Yale) Samuel R. Madden (MIT) Nabil Hachem (AvantGarde) Presented By : Kanika Nagpal OUTLINE Introduction Motivation Background

More information

October, z14 and Db2. Jeff Josten Distinguished Engineer, Db2 for z/os Development IBM Corporation

October, z14 and Db2. Jeff Josten Distinguished Engineer, Db2 for z/os Development IBM Corporation October, 2017 z14 and Db2 Jeff Josten Distinguished Engineer, Db2 for z/os Development Please Note IBM s statements regarding its plans, directions, and intent are subject to change or withdrawal without

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

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

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

SQL DDL II. CS121: Relational Databases Fall 2017 Lecture 8

SQL DDL II. CS121: Relational Databases Fall 2017 Lecture 8 SQL DDL II CS121: Relational Databases Fall 2017 Lecture 8 Last Lecture 2 Covered SQL constraints NOT NULL constraints CHECK constraints PRIMARY KEY constraints FOREIGN KEY constraints UNIQUE constraints

More information

InnoDB: What s new in 8.0

InnoDB: What s new in 8.0 #MySQL #oow17 InnoDB: What s new in 8.0 Sunny Bains Director Software Development Copyright 2017, Oracle and/or its its affiliates. All All rights reserved. Safe Harbor Statement The following is intended

More information

JSON Home Improvement. Christophe Pettus PostgreSQL Experts, Inc. SCALE 14x, January 2016

JSON Home Improvement. Christophe Pettus PostgreSQL Experts, Inc. SCALE 14x, January 2016 JSON Home Improvement Christophe Pettus PostgreSQL Experts, Inc. SCALE 14x, January 2016 Greetings! Christophe Pettus CEO, PostgreSQL Experts, Inc. thebuild.com personal blog. pgexperts.com company website.

More information

Unit 3 Disk Scheduling, Records, Files, Metadata

Unit 3 Disk Scheduling, Records, Files, Metadata Unit 3 Disk Scheduling, Records, Files, Metadata Based on Ramakrishnan & Gehrke (text) : Sections 9.3-9.3.2 & 9.5-9.7.2 (pages 316-318 and 324-333); Sections 8.2-8.2.2 (pages 274-278); Section 12.1 (pages

More information

Query Optimization, part 2: query plans in practice

Query Optimization, part 2: query plans in practice Query Optimization, part 2: query plans in practice CS634 Lecture 13 Slides by E. O Neil based on Database Management Systems 3 rd ed, Ramakrishnan and Gehrke Working with the Oracle query optimizer First

More information

IBM i Version 7.2. Database Database overview IBM

IBM i Version 7.2. Database Database overview IBM IBM i Version 7.2 Database Database overview IBM IBM i Version 7.2 Database Database overview IBM Note Before using this information and the product it supports, read the information in Notices on page

More information

DB2 for z/os: Conversion from indexcontrolled partitioning to Universal Table Space (UTS)

DB2 for z/os: Conversion from indexcontrolled partitioning to Universal Table Space (UTS) DB2 for z/os: Conversion from indexcontrolled partitioning to Universal Table Space (UTS) 1 Summary The following document is based on IBM DB2 11 for z/os. It outlines a conversion path from traditional

More information

DB2 10: For Developers Only

DB2 10: For Developers Only DB2 10: For Developers Only for z/os Sponsored by: align http://www.softbase.com 2011 Mullins Consulting, Inc. Craig S. Mullins Mullins Consulting, Inc. http://www.craigsmullins.com Author This presentation

More information

SQL: DDL. John Ortiz Cs.utsa.edu

SQL: DDL. John Ortiz Cs.utsa.edu SQL: DDL John Ortiz Cs.utsa.edu SQL Data Definition Language Used by DBA or Designer to specify schema A set of statements used to define and to change the definition of tables, columns, data types, constraints,

More information

Query Evaluation Overview, cont.

Query Evaluation Overview, cont. Query Evaluation Overview, cont. Lecture 9 Slides based on Database Management Systems 3 rd ed, Ramakrishnan and Gehrke Architecture of a DBMS Query Compiler Execution Engine Index/File/Record Manager

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

DB2 for z/os Optimizer: What have you done for me lately?

DB2 for z/os Optimizer: What have you done for me lately? Session: A08 DB2 for z/os Optimizer: What have you done for me lately? Terry Purcell IBM Silicon Valley Lab 14 th October 2008 16:45 17:45 Platform: DB2 for z/os You can always read about the features/enhancements

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

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ:

Oracle 1z z0-146 Oracle Database 11g: Advanced PL/SQL. Practice Test. Version QQ: Oracle 1z0-146 1z0-146 Oracle Database 11g: Advanced PL/SQL Practice Test Version 1.1 QUESTION NO: 1 Which two types of metadata can be retrieved by using the various procedures in the DBMS_METADATA PL/SQL

More information