Maximizing DB2 Audit Logging Facility Without Compromising Application Performance. James P O Leary Maria Shanahan HSBC North America

Size: px
Start display at page:

Download "Maximizing DB2 Audit Logging Facility Without Compromising Application Performance. James P O Leary Maria Shanahan HSBC North America"

Transcription

1 Session: D10 Maximizing DB2 Audit Logging Facility Without Compromising Application Performance James P O Leary Maria Shanahan HSBC North America May 21,2008 1:30 p.m. 2:30 p.m. Platform: DB2 for Linux, UNIX, Windows Utilizing the built-in Audit Facilities of DB2 UDB an appropriate level of auditing can be established without impacting database application performance. This presentation will illustrate how to establish a viable methodology in order to define, setup, implement, and monitor database auditable activities. Also included will be an explanation of the various audit event types, establishment of DB2 audit event tables and steps needed to extract audit information for reporting purposes. 1

2 Maximizing DB2 Audit Logging Facility Without Compromising Application Performance Establishment of UDB audit logging at the appropriate level for a particular application Definition, setup, implementation and utilization of DB2 UDB Audit Logging Facility How to create audit logging tables, population of tables, and establishment of maintenance jobs for audit logging facility Understanding of different audit event types How to utilize tools (Perfmon, LoadRunner) to assist in determining overhead of audit logging on a DB2 database 2 Various options and customization allow for different levels of auditing. Application need and DB2 performance overhead need to be taking into consideration before activating logging facility. 2

3 Vision To utilize the built-in Audit Facilities of DB2 UDB to establish an appropriate level of auditing without impacting database application performance. 3 As with any tool, overhead risks need to be weighed against benefits. To avoid the possible increased risk to performance, due diligence needs to be exercised to ensure the implications are determined upfront. Analysis of real-time simulations must be complete to avoid surprises in production activation. 3

4 Goals and Objectives: Define Methodology Establish DB2 Audit Environment Establish Testing Environment Perform Testing Comparative Analysis of Tests Results and Conclusions 4 4

5 Define Methodology Application Audit Requirements Application Simulation Tool Criteria DB2 Audit Facility Requirements Testing Scenarios Performance Needs Best Auditing Capability Criteria 5 All projects can be better managed when divided into separate components. Project plan should include requirements gathering, audit facility configuration, simulation tool setup, system testing (baseline and performance), performance analysis, and final recommendation. 5

6 Define Methodology Application Audit Requirements Audit needs Reporting requirements Audit record retention Application Audit Requirements will have direct correlation to DB2 Audit Facility requirements 6 Overhead can be minimized by only auditing necessary components. Decide on type of events necessary first then whether only successful or failed events should be logged. Successful event logging significantly increases overhead. Error handling can be configured to ignore audit facility errors and only send errors associated with the operation being performed. ERRORTYPE in db2audit command. Reporting requirements will assist in determining what information is necessary to capture to provide data for reports. Data retention requirements may necessitate offloading audit records to auxiliary repository. Reports retention may differ from raw data retention. 6

7 Define Methodology Application Simulation Tool Criteria Is one needed Is it scaleable Does it have performance reporting capabilities 7 Application Simulation tool will assist with volume/stress testing. Necessary to emulate application especially if complex transaction detail and volume. This will facilitate testing in a production like environment so that there will be no surprises once logging is activated. 7

8 Define Methodology DB2 Audit Facility Requirements Level required (full, partial or both) Based on reporting needs are we offloading or using audit tables Purge of audit events records 8 Full audit logging may be necessary if you need to associate a group of events back to a single database operation. If requirements can be met with partial audit logging overhead considerations may be minimal. Audit needs may require on demand access to audit tables which would mean easy access to audit data. Data may need to be offloaded and then purged to avoid space issues. 8

9 Define Methodology Testing Scenarios Baseline Normal processing activity and volume Partial - Same as baseline with all but operation context logging on Full - Same as partial with operation context logging on 9 Baseline testing will allow for normal processing both volume and detail. Partial audit logging test will be same as baseline with DB2 partial audit logging activated. Full audit logging test will be same as baseline and partial with DB2 full (Operation context) audit logging activated. 9

10 Define Methodology Performance Needs Acceptable performance impact level to application and DB2 Different level of auditing based upon application impact Purchase additional hardware if needed 10 Criticality of application response time and other acceptable performance levels should be determined in order to successfully evaluate impact. Auditing level can be tailored to meet requirements and application overhead associated with that level Additional memory and / or DASD may assist in offsetting impact 10

11 Define Methodology Best Auditing Capability Criteria Application response time (through put) CPU consumption DISK I/O 11 Monitor response time to see existing baseline values. Application response time should be addressed with business to establish acceptable levels. CPU and DISK I/O should be evaluated to determine optimal scenario. 11

12 DB2 Audit Environment Setup Database Audit Event Types Create UDB Audit Database Objects Configure and Activate Audit Facility Implement process to offload Audit data and purge UDB tables 12 Audit environmental settings need to be completed before audit is activated. Decisions made in the methodology phase will be implemented here, and used later in performance phase. In review, the following questions should be taken into consideration: 1. Level of audit requirement 2. Reporting requirements make sure necessary values are being captured (Flat files or DB2 tables) 3. Audit records retention duration (purge process) 5. SMS or DMS for audit database DMS used here 12

13 DB2 Audit Environment Database Audit Event Types AUDIT CHECKING OBJMAINT SECMAINT SYSADMIN VALIDATE CONTEXT 13 Audit records are produced whenever the following events take place: Audit - Generates records when audit settings are changed or when the audit log is accessed Authorization checking - Generates records during authorization checking of attempts to access or manipulate DB2 objects or functions Object maintenance - Generates records when creating or dropping data objects Security maintenance - Generates records when granting or revoking object or database privileges or DBADM authority. Records are also generated when the database manager security configuration parameters SYSADM_GROUP, SYSCTRL_GROUP, or SYSMAINT_GROUP are modified System administration - Generates records when operations requiring SYSADM, SYSMAINT, or SYSCTRL authority are performed User validation - Generates records when authenticating users or retrieving system security information Operation context Generates records to show the operation context when a database operation is performed. This category allows for better interpretation of the audit records. When used with the log's event correlator field, a group of events can be traced back to a single database operation that can provide needed context when analyzing audit results. 13

14 DB2 Audit Environment UDB Audit Database Objects CREATE SCHEMA AUDIT CREATE BUFFERPOOL BPAUDIT_R CREATE REGULAR TABLESPACE AUDIT_DATA_TS CREATE TABLE AUDIT 14 CREATE SCHEMA AUDIT; SET CURRENT SCHEMA = 'AUDIT'; CREATE BUFFERPOOL BPAUDIT_R ALL NODES SIZE 4192 PAGESIZE 4096 NOT EXTENDED STORAGE; CREATE REGULAR TABLESPACE AUDIT_DATA_TS IN NODEGROUP IBMDEFAULTGROUP PAGESIZE 4096 MANAGED BY DATABASE USING( FILE 'D:\AUDIT\Audit_data_ts.ts1' ) EXTENTSIZE 16 PREFETCHSIZE 32 BUFFERPOOL BPAUDIT_R OVERHEAD 8.30 TRANSFERRATE 0.18 DROPPED TABLE RECOVERY ON; CREATE TABLE AUDIT (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, STATUS INTEGER, USERID VARCHAR(1024), AUTHID VARCHAR(128)) IN AUDIT_DATA_TS; 14

15 DB2 Audit Environment UDB Audit Database Objects CREATE TABLE CHECKING CREATE TABLE OBJMAINT 15 CREATE TABLE CHECKING (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, STATUS INTEGER, DATABASE CHAR(8), USERID VARCHAR(1024), AUTHID VARCHAR(128), NODENUM SMALLINT, COORDNUM SMALLINT, APPID VARCHAR(255), APPNAME VARCHAR(1024), PKGSCHEMA VARCHAR(128), PKGNAME VARCHAR(128), PKGSECNUM SMALLINT, OBJSCHEMA VARCHAR(128), OBJNAME VARCHAR(128), OBJTYPE VARCHAR(32), ACCESSAPP CHAR(18), ACCESSATT CHAR(18), PKGVER VARCHAR(64))IN AUDIT_DATA_TS; CREATE TABLE OBJMAINT (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, STATUS INTEGER, DATABASE CHAR(8), USERID VARCHAR(1024), AUTHID VARCHAR(128), NODENUM SMALLINT, COORDNUM SMALLINT, APPID VARCHAR(255), APPNAME VARCHAR(1024), PKGSCHEMA VARCHAR(128), PKGNAME VARCHAR(128), PKGSECNUM SMALLINT, OBJSCHEMA VARCHAR(128), OBJNAME VARCHAR(128), OBJTYPE VARCHAR(32), PACKVER VARCHAR(64))IN AUDIT_DATA_TS; 15

16 DB2 Audit Environment UDB Audit Database Objects CREATE TABLE SECMAINT CREATE TABLE SYSADMIN 16 CREATE TABLE SECMAINT (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, STATUS INTEGER, DATABASE CHAR(8), USERID VARCHAR(1024), AUTHID VARCHAR(128), NODENUM SMALLINT, COORDNUM SMALLINT, APPID VARCHAR(255), APPNAME VARCHAR(1024), PKGSCHEMA VARCHAR(128), PKGNAME VARCHAR(128), PKGSECNUM SMALLINT, OBJSCHEMA VARCHAR(128), OBJNAME VARCHAR(128), OBJTYPE VARCHAR(32), GRANTOR VARCHAR(128), GRANTEE VARCHAR(128), GRANTEETYPE VARCHAR(32), PRIVAUTH CHAR(18), PKGVER VARCHAR(64))IN AUDIT_DATA_TS; CREATE TABLE SYSADMIN (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, STATUS INTEGER, DATABASE CHAR(8), USERID VARCHAR(1024), AUTHID VARCHAR(128), NODENUM SMALLINT, COORDNUM SMALLINT, APPID VARCHAR(255), APPNAME VARCHAR(1024), PKGSCHEMA VARCHAR(128), PKGNAME VARCHAR(128), PKGSECNUM SMALLINT, PKGVER VARCHAR(64))IN AUDIT_DATA_TS; 16

17 DB2 Audit Environment UDB Audit Database Objects CREATE TABLE VALIDATE CREATE TABLE CONTEXT 17 CREATE TABLE VALIDATE (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, STATUS INTEGER, DATABASE CHAR(8), USERID VARCHAR(1024), AUTHID VARCHAR(128), EXECID VARCHAR(1024), NODENUM SMALLINT, COORDNUM SMALLINT, APPID VARCHAR(255), APPNAME VARCHAR(1024), AUTHTYPE VARCHAR(32), PKGSCHEMA VARCHAR(128), PKGNAME VARCHAR(128), PKGSECNUM SMALLINT, PKGVER VARCHAR(64), AUDIT_DATA_TS; PLUGINNAME VARCHAR(32))IN CREATE TABLE CONTEXT (TIMESTAMP CHAR(26), CATEGORY CHAR(8), EVENT VARCHAR(32), CORRELATOR INTEGER, DATABASE CHAR(8), USERID VARCHAR(1024), AUTHID VARCHAR(128), NODENUM SMALLINT, COORDNUM SMALLINT, APPID VARCHAR(255), APPNAME VARCHAR(1024), PKGSCHEMA VARCHAR(128), PKGNAME VARCHAR(128), PKGSECNUM SMALLINT, STMTTEXT CLOB(2M), PKGVER VARCHAR(64))IN AUDIT_DATA_TS; 17

18 DB2 Audit Environment Configure and Activate Audit Facility Configure the audit buffer Configure auditing type Start / Stop auditing 18 db2 update db2 cfg using AUDIT_BUF_SZ 256 db2stop db2start db2audit configure scope all status both errortype normal db2audit configure scope audit, checking, objmaint, secmaint, sysadmin, validate status both errotype normal db2audit start db2audit stop 18

19 DB2 Audit Environment Offload Audit Data and Purge UDB tables Export audit records Load audit tables Db2audit prune all 19 Schedule daily script audit_load.ksh which performs the following functions: 1. Flush the buffer db2audit flush 2. Create load ready extract tables from the binary file db2audit.log db2audit extract delasc 3. Prune the db2audit.log table (remove data that used to create load ready files) 4. Load the UDB audit tables db2 connect to db2audit db2 import from audit.del of del modified by chardell0xff insert into audit.audit db2 import from checking.del of del modified by chardell0xff insert into audit.checking db2 import from objmaint.del of del modified by chardell0xff insert into audit.objmaint db2 import from secmaint.del of del modified by chardell0xff insert into audit.secmaint db2 import from validate.del of del modified by chardell0xff insert into audit.validate db2 import from sysadmin.del of del modified by chardell0xff insert into audit.sysadmin db2 import from context.del of del modified by chardell0xff insert into audit.context 19

20 Establish Testing Environment Tools Performance Monitor Application scripts Visual Illustrations Testing Scenarios Baseline Partial Audit Logging Full Audit Logging 20 20

21 Establish Testing Environment Tools Application Simulation tool - LoadRunner Performance monitor Perfmon Visual Illustrations / Charts EXCEL 21 LoadRunner application simulation tool utilized to emulate normal production activity and scaling of the application workflow to stress machine capacity thresholds. Perfmon Windows Performance monitor utilized to capture CPU utilization, memory utilization and DB2 processing. EXCEL - Chart wizard utilized to graph statistics extrapolated from testing 21

22 Establish Testing Environment Testing Scenarios Baseline Starting point for comparative analysis Define scripts in LoadRunner to emulate normal activity Turn on Perfmon to capture statistics Execute via LoadRunner workflow 22 Baseline - Is used to establish normal application workflow for a processing day without DB2 Audit Facility enabled. The baseline will the be compared against partial audit and full audit logging test results Define workflow in LoadRunner via scripts Determine normal activity (number of concurrent users, frequency of scripts) Configure Perfmon to capture DB2 services for CPU and memory utilization along with File I/O 22

23 Establish Testing Environment Testing Scenarios Partial Audit Logging Turn on partial audit logging (audit, authorization checking, object maintenance, security maintenance, system administration and user validation) Turn on Perfmon to capture statistics Execute via LoadRunner workflow 23 Partial Audit Logging Is used to determine the minimal audit requirements that are available to the application. Utilization of the scenarios will require additional research as to what occurred in a particular audit event on the database. Additional tools will be required such as application logs (if available), DB2 archive logs etc. 23

24 Establish Testing Environment Testing Scenarios Full Audit Logging Turn on full audit logging (audit, authorization checking, object maintenance, security maintenance, system administration, user validation, and operation context) Turn on Perfmon to capture statistics Execute via LoadRunner workflow 24 Full Audit Logging - Is used to establish maximum capabilities of DB2 audit logging. Using this scenario additional research may not be required when analyzing an audit event. However, the Risk vs. Reward increase in CPU, memory and thru put may be taken into consideration. 24

25 Comparative Analysis of Test Data gathered through Perfmon for each test exported to Excel Excel chart wizard to graph results Maximum CPU percentages utilized for all testing 25 25

26 Comparative Analysis of Test Maximum CPU utilization with full auditing was 96% as compared to 80% and 83% for the baseline and partial tests respectively. Maximum CPU processor time for DB2 with full auditing was 75% as compared to 28% and 36% for the baseline and partial tests respectively

27 Comparative Analysis of Test Maximum CPU utilization % Utilization Baseline Partial Full DB2 CPU 27 27

28 Comparative Analysis of Test 100 Baseline % Disk Time % Processor Time 28 Observations: As transaction flow increases so does cpu utilization. Full audit logging has high cpu utilization from the start Partial audit logging not only consumes less cpu but stays close to normal application cpu usage 28

29 Comparative Analysis of Test 100 Partial Audit Logging % Disk Time % Processor Time 29 29

30 Comparative Analysis of Test Full Audit Logging % Disk Time % Processor Time 30 30

31 Comparative Analysis of Test 100 CPU% All Tests CPU Percent Time Baseline Partial Logging Full Logging 31 31

32 Results and Conclusions Full audit logging consumes a significant amount of O/S resources Partial audit logging Biggest Bang for your Buck Very important to develop methodology based on application audit needs Risk and Reward must be taken into consideration 32 32

33 Resources DB2 UDB security, Part 5: Understand the DB2 audit facility, harticle/dm-0603wasserman/index.html IBM DB2 Administration Guide Planning V9 - Chapter 9. Auditing DB2 Activities SC

34 Session D10 Maximizing DB2 Audit Logging Facility Without Compromising Application Performance James P O Leary Maria Shanahan HSBC North America James.P.O Leary@us.hsbc.com Maria.Shanahan@us.hsbc.com 34 James P. O Leary Over twenty five years data processing experience with special expertise in the areas of data warehousing, database administration, database system programming, operating system software, and applications systems support. Maria Shanahan Over twenty five years experience in Information Technology with special expertise in database administration and project management. 34

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

RSA NetWitness Logs IBM DB2. Event Source Log Configuration Guide. Last Modified: Friday, November 17, 2017

RSA NetWitness Logs IBM DB2. Event Source Log Configuration Guide. Last Modified: Friday, November 17, 2017 RSA NetWitness Logs Event Source Log Configuration Guide IBM DB2 Last Modified: Friday, November 17, 2017 Event Source Product Information: Vendor: IBM Event Source: DB2 Universal Database Versions: 7,8,

More information

Symantec Enterprise Security Manager IBM DB2 Modules User Guide for Windows and UNIX. Version 4.6

Symantec Enterprise Security Manager IBM DB2 Modules User Guide for Windows and UNIX. Version 4.6 Symantec Enterprise Security Manager IBM DB2 Modules User Guide for Windows and UNIX Version 4.6 Symantec Enterprise Security Manager IBM DB2 Modules User Guide The software described in this book is furnished

More information

Symantec Enterprise Security Manager IBM DB2 Modules User Guide for Windows and UNIX. Version 4.2

Symantec Enterprise Security Manager IBM DB2 Modules User Guide for Windows and UNIX. Version 4.2 Symantec Enterprise Security Manager IBM DB2 Modules User Guide for Windows and UNIX Version 4.2 Symantec Enterprise Security Manager IBM DB2 Modules User Guide The software described in this book is furnished

More information

Lesson 8 Transcript: Database Security

Lesson 8 Transcript: Database Security Lesson 8 Transcript: Database Security Slide 1: Cover Welcome to Lesson 8 of the DB2 on Campus Series. Today we are going to talk about database security. My name is Raul Chong, and I am the DB2 on Campus

More information

IBM DB2 Query Patroller. Administration Guide. Version 7 SC

IBM DB2 Query Patroller. Administration Guide. Version 7 SC IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 IBM DB2 Query Patroller Administration Guide Version 7 SC09-2958-00 Before using this information and the product it supports, be sure

More information

Apparo Fast Edit. Database configuration for the Apparo repository and others 1 / 20

Apparo Fast Edit. Database configuration for the Apparo repository and others 1 / 20 Apparo Fast Edit Database configuration for the Apparo repository and others 1 / 20 Table of content 1 Prior to Installation 3 2 Using Oracle for repository 4 2.1 Creating a new user 4 2.2 Granting the

More information

IBM DB2 UDB V7.1 for UNIX, Linux, Windows and OS/2 Database Administration.

IBM DB2 UDB V7.1 for UNIX, Linux, Windows and OS/2 Database Administration. IBM 000-513 DB2 UDB V7.1 for UNIX, Linux, Windows and OS/2 Database Administration http://killexams.com/exam-detail/000-513 Answer: C QUESTION 125 Given the following: SYSADM group name (SYSADM GROUP)

More information

Oracle Enterprise Manager. Description. Platforms Supported. Versions Supported. Prerequisites

Oracle Enterprise Manager. Description. Platforms Supported. Versions Supported. Prerequisites Oracle Enterprise Manager System Monitoring Plug-in Installation Guide for IBM DB2 Database Release 7 (3.2.1.0.0) E12306-02 May 2008 This document provides a brief description about the Oracle System Monitoring

More information

IBM DB2 Database Plug-in User s Guide Release

IBM DB2 Database Plug-in User s Guide Release [1]Oracle Enterprise Manager IBM DB2 Database Plug-in User s Guide Release 13.1.0.1 E65775-01 December 2015 Oracle Enterprise Manager IBM DB2 Database Plug-in User's Guide, Release 13.1.0.1 E65775-01 Copyright

More information

Vendor: IBM. Exam Code: Exam Name: DB DBA for Linux, UNIX, and Windows. Version: Demo

Vendor: IBM. Exam Code: Exam Name: DB DBA for Linux, UNIX, and Windows. Version: Demo Vendor: IBM Exam Code: 000-611 Exam Name: DB2 10.1 DBA for Linux, UNIX, and Windows Version: Demo QUESTION 1 Due to a hardware failure, it appears that there may be some corruption in database DB_1 as

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager IBM DB2 Database Plug-in User's Guide 13.2.1.0 E73501-01 June 2016 Oracle Enterprise Manager IBM DB2 Database Plug-in User's Guide, 13.2.1.0 E73501-01 Copyright 2015, 2016, Oracle

More information

8815 Centre Park Drive Columbia MD Publication Date: Dec 04, 2014

8815 Centre Park Drive Columbia MD Publication Date: Dec 04, 2014 Publication Date: Dec 04, 2014 8815 Centre Park Drive Columbia MD 21045 www.eventtracker.com About this Guide This guide provides instructions to configure IBM DB2 Universal Database (UDB) to send the

More information

Vendor: IBM. Exam Code: C Exam Name: DB DBA for Linux UNIX and Windows. Version: Demo

Vendor: IBM. Exam Code: C Exam Name: DB DBA for Linux UNIX and Windows. Version: Demo Vendor: IBM Exam Code: C2090-611 Exam Name: DB2 10.1 DBA for Linux UNIX and Windows Version: Demo QUESTION 1 Due to a hardware failure, it appears that there may be some corruption in database DB_1 as

More information

Chapter 3: Database Components

Chapter 3: Database Components 3. Database Components 3-1 DBA Certification Course (Summer 2008) Chapter 3: Database Components Tablespaces Buffer Pools Schemas Catalog 3. Database Components 3-2 Objectives After completing this chapter,

More information

The Top 10 DB2 LUW Mistakes

The Top 10 DB2 LUW Mistakes DB2Night Show The Top 10 DB2 LUW Mistakes P.O. Box 200, 5520 AE Eersel, The Netherlands Tel.:+31.497-530190, E-mail: kbrant@kbce.com Disclaimer and Trademarks Please be aware that the actual programming

More information

IBM EXAM QUESTIONS & ANSWERS

IBM EXAM QUESTIONS & ANSWERS IBM 000-611 EXAM QUESTIONS & ANSWERS Number: 000-611 Passing Score: 800 Time Limit: 120 min File Version: 23.3 http://www.gratisexam.com/ IBM 000-611 EXAM QUESTIONS & ANSWERS Exam Name: DB2 10.1 DBA for

More information

We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info

We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info We are ready to serve Latest Testing Trends, Are you ready to learn.?? New Batches Info START DATE : TIMINGS : DURATION : TYPE OF BATCH : FEE : FACULTY NAME : LAB TIMINGS : Performance Testing Fundamentals

More information

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

More information

Expert Oracle GoldenGate

Expert Oracle GoldenGate Expert Oracle GoldenGate Ben Prusinski Steve Phillips Richard Chung Apress* Contents About the Authors About the Technical Reviewer Acknowledgments xvii xviii xix Chapter 1: Introduction...1 Distributed

More information

Oracle Database Auditing

Oracle Database Auditing By Craig Moir craig@mydba.co.za http://www.mydba.co.za August 2012 Version 1 WHY AUDIT? Allows organizations to enforce the trust-but-verify security principle. Satisfying compliance regulations. Enables

More information

IBM DB Advanced DBA for Linux UNIX and Windows.

IBM DB Advanced DBA for Linux UNIX and Windows. IBM 000-614 DB2 10.1 Advanced DBA for Linux UNIX and Windows http://killexams.com/exam-detail/000-614 QUESTION: 98 Which Workload Manager (WLM) objects can the COLLECT ACTIVITY DATA clause be used with?

More information

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

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

More information

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 UDB Monitoring with Scripts

DB2 UDB Monitoring with Scripts Platform: DB2 UDB for Linux, UNIX, and Windows DB2 UDB Monitoring with Scripts Thomas Horner Senior DBA, S1 Corporation Session: D11 May 25, 2005 at 3:30 PM This presentation will cover in detail ten shells

More information

Case Study: Home-Grown DB2 Monitoring and Related Tools. Jayesh Thakrar The Warranty Group

Case Study: Home-Grown DB2 Monitoring and Related Tools. Jayesh Thakrar The Warranty Group Session: D12 Case Study: Home-Grown DB2 Monitoring and Related Tools Jayesh Thakrar The Warranty Group May 10, 2007 09:20 a.m. 10:20 a.m. Platform: DB2 for Linux, Unix and Windows 1 Topics 1. Presentation

More information

EMC Unisphere for VMAX Database Storage Analyzer

EMC Unisphere for VMAX Database Storage Analyzer EMC Unisphere for VMAX Database Storage Analyzer Version 8.0.3 Online Help (PDF version) Copyright 2014-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes the

More information

Basi di Dati Complementi. Mainframe

Basi di Dati Complementi. Mainframe Basi di Dati Complementi 3.1. DBMS commerciali DB2-3.1.2 Db2 in ambiente mainframe Andrea Maurino 2007 2008 Mainframe 1 Mainframe Terminologia Mainframe Storage Management Subsystem (SMS) Is an automated

More information

MINION ENTERPRISE FEATURES LIST

MINION ENTERPRISE FEATURES LIST MINION ENTERPRISE FEATURES LIST Minion Enterprise is an automation and management tool for SQL Server. It provides you with the 10,000- foot view, detailed view, and fine-grained alerting and controls

More information

Oracle Database 12c Performance Management and Tuning

Oracle Database 12c Performance Management and Tuning Course Code: OC12CPMT Vendor: Oracle Course Overview Duration: 5 RRP: POA Oracle Database 12c Performance Management and Tuning Overview In the Oracle Database 12c: Performance Management and Tuning course,

More information

IT Services IT LOGGING POLICY

IT Services IT LOGGING POLICY IT LOGGING POLICY UoW IT Logging Policy -Restricted- 1 Contents 1. Overview... 3 2. Purpose... 3 3. Scope... 3 4. General Requirements... 3 5. Activities to be logged... 4 6. Formatting, Transmission and

More information

Oracle Database 12c: Administration Workshop Ed 2 NEW

Oracle Database 12c: Administration Workshop Ed 2 NEW Oracle Database 12c: Administration Workshop Ed 2 NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will

More information

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Administration Workshop Duration: 5 Days Method: Instructor-Led Certification: Oracle Database 12c Administrator Certified Associate Exam: Oracle Database 12c: Installation and Administration

More information

Oracle Database 10g: New Features for Administrators Release 2

Oracle Database 10g: New Features for Administrators Release 2 Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database 10g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course introduces students to the new features

More information

Lets start with the standard disclaimer. Please go to the next slide

Lets start with the standard disclaimer. Please go to the next slide DB2 10 for z/os Security Enhancements James Click Pickel to edit Master text styles IBM Silicon Valley Laboratory DB2 for z/os Second Security level Architect Session: A05 Time: 9 November 2010 11:00 am

More information

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals

Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Exam 1Z0-061 Oracle Database 12c: SQL Fundamentals Description The SQL Fundamentals exam is intended to verify that certification candidates have a basic understanding of the SQL language. It covers the

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

CA RC/Secure for DB2 for z/os

CA RC/Secure for DB2 for z/os PRODUCT sheet: CA RC/Secure for DB2 for z/os CA RC/Secure for DB2 for z/os CA RC/Secure for DB2 for z/os (CA RC/Secure) is a comprehensive, online security administration tool for DB2 for z/os that helps

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database 12c: Administration Workshop Ed 2 Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle Database 12c: Administration Workshop Ed 2 Duration 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

More information

Best Practices for Deployment of SQL Compliance Manager

Best Practices for Deployment of SQL Compliance Manager Best Practices for Deployment of SQL Compliance Manager Table of Contents OVERVIEW/PURPOSE...2 REQUIRED LEVEL OF AUDITING...2 SQL COMPLIANCE REPOSITORY SQL SETTINGS...2 CONFIGURATION SETTINGS...3 CAPTURED

More information

Performance Tuning. Chapter 25

Performance Tuning. Chapter 25 Chapter 25 Performance Tuning This chapter covers the following topics: Overview, 618 Identifying the Performance Bottleneck, 619 Optimizing the Target Database, 624 Optimizing the Source Database, 627

More information

MBS Microsoft Oracle Plug-In 6.82 User Guide

MBS Microsoft Oracle Plug-In 6.82 User Guide MBS Microsoft Oracle Plug-In 6.82 User Guide 10 Oracle Plug-In This version of the Oracle Plug-In supports Windows Agents. It is an add-on that allows you to perform database backups on Oracle databases.

More information

EMC Unisphere for VMAX Database Storage Analyzer

EMC Unisphere for VMAX Database Storage Analyzer EMC Unisphere for VMAX Database Storage Analyzer Version 8.2.0 Online Help (PDF version) Copyright 2014-2016 EMC Corporation. All rights reserved. Published in the USA. Published March, 2016 EMC believes

More information

EMC Unisphere for VMAX Database Storage Analyzer

EMC Unisphere for VMAX Database Storage Analyzer EMC Unisphere for VMAX Database Storage Analyzer Version 8.4.0 Online Help (PDF version) Copyright 2014-2017 EMC Corporation All rights reserved. Published May 2017 Dell believes the information in this

More information

Adding, Dropping Storage Path(s) and Rebalancing Tablespaces

Adding, Dropping Storage Path(s) and Rebalancing Tablespaces Adding, Dropping Storage Path(s) and Rebalancing Tablespaces Applies to: All SAP releases on DB2 9.7 for Linux, UNIX, and Windows. For more information, visit the Landscape Design and Architecture homepage.

More information

DB2 10 for z/os Security Overview

DB2 10 for z/os Security Overview IBM Software Group DB2 10 for z/os Security Overview Disclaimer and Trademarks Information contained in this material has not been submitted to any formal IBM review and is distributed on "as is" basis

More information

Oracle Database 11g: Administration Workshop II

Oracle Database 11g: Administration Workshop II Oracle Database 11g: Administration Workshop II Duration: 5 Days What you will learn In this course, the concepts and architecture that support backup and recovery, along with the steps of how to carry

More information

ORACLE DIAGNOSTICS PACK

ORACLE DIAGNOSTICS PACK ORACLE DIAGNOSTICS PACK KEY FEATURES AND BENEFITS: Automatic Performance Diagnostic liberates administrators from this complex and time consuming task, and ensures quicker resolution of performance bottlenecks.

More information

End to End Analysis on System z IBM Transaction Analysis Workbench for z/os. James Martin IBM Tools Product SME August 10, 2015

End to End Analysis on System z IBM Transaction Analysis Workbench for z/os. James Martin IBM Tools Product SME August 10, 2015 End to End Analysis on System z IBM Transaction Analysis Workbench for z/os James Martin IBM Tools Product SME August 10, 2015 Please note IBM s statements regarding its plans, directions, and intent are

More information

A Examcollection.Premium.Exam.54q

A Examcollection.Premium.Exam.54q A2090-544.Examcollection.Premium.Exam.54q Number: A2090-544 Passing Score: 800 Time Limit: 120 min File Version: 32.2 http://www.gratisexam.com/ Exam Code: A2090-544 Exam Name: Assessment: DB2 9.7 Advanced

More information

Product Guide. McAfee Performance Optimizer 2.2.0

Product Guide. McAfee Performance Optimizer 2.2.0 Product Guide McAfee Performance Optimizer 2.2.0 COPYRIGHT Copyright 2017 McAfee, LLC TRADEMARK ATTRIBUTIONS McAfee and the McAfee logo, McAfee Active Protection, epolicy Orchestrator, McAfee epo, McAfee

More information

Oracle Database 11g: New Features for Administrators Release 2

Oracle Database 11g: New Features for Administrators Release 2 Oracle University Contact Us: 0845 777 7711 Oracle Database 11g: New Features for Administrators Release 2 Duration: 5 Days What you will learn This course gives you the opportunity to learn about and

More information

Installing and Administering a Satellite Environment

Installing and Administering a Satellite Environment IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00 IBM DB2 Universal Database Installing and Administering a Satellite Environment Version 8 GC09-4823-00

More information

IBM Lotus Notes 8.5 on Citrix XenApp 4.5: A scalability analysis

IBM Lotus Notes 8.5 on Citrix XenApp 4.5: A scalability analysis IBM Lotus Notes 8.5 on Citrix XenApp 4.5: A scalability analysis Brian Gallagher IBM Software Group, Lotus Software Manager, Lotus Notes and Domino System Test Westford, MA, USA Gary Denner IBM Software

More information

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

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

More information

This document contains information on fixed and known limitations for Test Data Management.

This document contains information on fixed and known limitations for Test Data Management. Informatica Corporation Test Data Management Version 9.6.0 Release Notes August 2014 Copyright (c) 2003-2014 Informatica Corporation. All rights reserved. Contents Informatica Version 9.6.0... 1 Installation

More information

Jyotheswar Kuricheti

Jyotheswar Kuricheti Jyotheswar Kuricheti 1 Agenda: 1. Performance Tuning Overview 2. Identify Bottlenecks 3. Optimizing at different levels : Target Source Mapping Session System 2 3 Performance Tuning Overview: 4 What is

More information

IBM Tivoli Monitoring for Web Infrastructure: WebSphere Application Server. User s Guide. Version SC

IBM Tivoli Monitoring for Web Infrastructure: WebSphere Application Server. User s Guide. Version SC IBM Tivoli Monitoring for Web Infrastructure: WebSphere Application Server User s Guide Version 5.1.1 SC23-4705-01 IBM Tivoli Monitoring for Web Infrastructure: WebSphere Application Server User s Guide

More information

WebSphere Application Server Base Performance

WebSphere Application Server Base Performance WebSphere Application Server Base Performance ii WebSphere Application Server Base Performance Contents WebSphere Application Server Base Performance............. 1 Introduction to the WebSphere Application

More information

WHITE PAPER Application Performance Management. Managing the Performance of DB2 Environments

WHITE PAPER Application Performance Management. Managing the Performance of DB2 Environments WHITE PAPER Application Performance Management Managing the Performance of DB2 Environments Management summary... 3 Precise for DB2 UDB: Application Performance Monitoring... 4 Maximizing the efficiency

More information

Course 20764: Administering a SQL Database Infrastructure

Course 20764: Administering a SQL Database Infrastructure Course 20764: Administering a SQL Database Infrastructure About this course: This five-day instructor-led course provides students who administer and maintain SQL Server databases with the knowledge and

More information

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES

Projects. Corporate Trainer s Profile. CMM (Capability Maturity Model) level Project Standard:- TECHNOLOGIES Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

IBM and Centerfield Technology

IBM and Centerfield Technology IBM and Centerfield Technology The purpose of this document is to describe the differences between Centerfield s HomeRun suite of tools and iseries Navigator. The functional areas covered by each tool

More information

1 of 8 14/12/2013 11:51 Tuning long-running processes Contents 1. Reduce the database size 2. Balancing the hardware resources 3. Specifying initial DB2 database settings 4. Specifying initial Oracle database

More information

Front cover. DB2 for Linux, UNIX, and Windows Performance Tuning and Monitoring Workshop. Student Exercises. IBM Certified Course Material V2.0.0.

Front cover. DB2 for Linux, UNIX, and Windows Performance Tuning and Monitoring Workshop. Student Exercises. IBM Certified Course Material V2.0.0. V2.0.0.1 cover Front cover DB2 for Linux, UNIX, and Windows Performance Tuning and Monitoring Workshop (Course Code CF41) Student Exercises ERC 9.0 IBM Certified Course Material Student Exercises Trademarks

More information

DB2 Performance Essentials

DB2 Performance Essentials DB2 Performance Essentials Philip K. Gunning Certified Advanced DB2 Expert Consultant, Lecturer, Author DISCLAIMER This material references numerous hardware and software products by their trade names.

More information

COMP 3400 Mainframe Administration 1

COMP 3400 Mainframe Administration 1 COMP 3400 Mainframe Administration 1 Christian Grothoff christian@grothoff.org http://grothoff.org/christian/ 1 These slides are based in part on materials provided by IBM s Academic Initiative. 1 Databases

More information

DB2 Security Overview

DB2 Security Overview DB2 Security Overview Deb Jenson Product Manager, Data Studio dejenson@us.ibm.com November 20, 2008 Disclaimer This presentation is intended to provide general background information, not regulatory, legal

More information

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5.

Course Outline: Oracle Database 11g: Administration II. Learning Method: Instructor-led Classroom Learning. Duration: 5. Course Outline: Oracle Database 11g: Administration II Learning Method: Instructor-led Classroom Learning Duration: 5.00 Day(s)/ 40 hrs Overview: In this course, the concepts and architecture that support

More information

Solving the DB2 Database Administration Dilemma

Solving the DB2 Database Administration Dilemma Solving the DB2 Database Administration Dilemma Randy Goering DST Systems Inc. rmgoering@gmail.com Session Code D12 May 13, 2010 2:45 PM 3:45 PM Platform DB2 9 for Linux, UNIX, Windows Abstract As a DB2

More information

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA)

ITS. MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) MySQL for Database Administrators (40 Hours) (Exam code 1z0-883) (OCP My SQL DBA) Prerequisites Have some experience with relational databases and SQL What will you learn? The MySQL for Database Administrators

More information

Copyright 2014, Oracle and/or its affiliates. All rights reserved.

Copyright 2014, Oracle and/or its affiliates. All rights reserved. 1 Enterprise Manager 12c Compliance Management Part 1 Overview 2 3 Agenda Compliance Overview Understanding Compliance Results Understanding Compliance Score Calculation Compliance Related Roles and Privileges

More information

"Charting the Course... MOC C: Administering an SQL Database Infrastructure. Course Summary

Charting the Course... MOC C: Administering an SQL Database Infrastructure. Course Summary Description Course Summary This five-day instructor-led course provides students who administer and maintain SQL databases with the knowledge and skills to administer a SQL server database infrastructure.

More information

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability

DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability DB2 for Linux, UNIX, Windows - Adv. Recovery and High Availability Duration: 4 Days Course Code: CL492G Overview: Gain a deeper understanding of the advanced recovery features of DB2 9 for Linux, UNIX,

More information

Version Monitoring Agent User s Guide SC

Version Monitoring Agent User s Guide SC Tivoli IBM Tivoli Advanced Catalog Management for z/os Version 02.01.00 Monitoring Agent User s Guide SC23-7974-00 Tivoli IBM Tivoli Advanced Catalog Management for z/os Version 02.01.00 Monitoring Agent

More information

McAfee Performance Optimizer 2.1.0

McAfee Performance Optimizer 2.1.0 Product Guide McAfee Performance Optimizer 2.1.0 For use with McAfee epolicy Orchestrator COPYRIGHT 2016 Intel Corporation TRADEMARK ATTRIBUTIONS Intel and the Intel logo are registered trademarks of the

More information

What is Real Application Testing?

What is Real Application Testing? Real Application Testing Real Application Testing Enterprise Manager Management Packs Enhancements What is Real Application Testing? New database option available with EE only Includes two new features

More information

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005

Oracle Database 10g Resource Manager. An Oracle White Paper October 2005 Oracle Database 10g Resource Manager An Oracle White Paper October 2005 Oracle Database 10g Resource Manager INTRODUCTION... 3 SYSTEM AND RESOURCE MANAGEMENT... 3 ESTABLISHING RESOURCE PLANS AND POLICIES...

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

Introduction to ALM, UFT, VuGen, and LoadRunner

Introduction to ALM, UFT, VuGen, and LoadRunner Software Education Introduction to ALM, UFT, VuGen, and LoadRunner This course introduces students to the Application Lifecycle Management line products Introduction to ALM, UFT, VuGen, and LoadRunner

More information

MySQL for Database Administrators Ed 3.1

MySQL for Database Administrators Ed 3.1 Oracle University Contact Us: 1.800.529.0165 MySQL for Database Administrators Ed 3.1 Duration: 5 Days What you will learn The MySQL for Database Administrators training is designed for DBAs and other

More information

Protecting Privacy while Sharing Medical Data between Regional Healthcare Entities

Protecting Privacy while Sharing Medical Data between Regional Healthcare Entities IBM Almaden Research Center Protecting Privacy while Sharing Medical Data between Regional Healthcare Entities Tyrone Grandison, Srivatsava Ranjit Ganta, Uri Braun, James Kaufman Session S113: Sharing

More information

Training 24x7 DBA Support Staffing. Administering a SQL Database Infrastructure (40 Hours) Exam

Training 24x7 DBA Support Staffing. Administering a SQL Database Infrastructure (40 Hours) Exam Administering a SQL Database Infrastructure (40 Hours) Exam 70-764 Prerequisites Basic knowledge of the Microsoft Windows operating system and its core functionality. Working knowledge of Transact-SQL.

More information

Using Data Transfer Services

Using Data Transfer Services 103 CHAPTER 16 Using Data Transfer Services Introduction 103 Benefits of Data Transfer Services 103 Considerations for Using Data Transfer Services 104 Introduction For many applications, data transfer

More information

Informatica Developer Tips for Troubleshooting Common Issues PowerCenter 8 Standard Edition. Eugene Gonzalez Support Enablement Manager, Informatica

Informatica Developer Tips for Troubleshooting Common Issues PowerCenter 8 Standard Edition. Eugene Gonzalez Support Enablement Manager, Informatica Informatica Developer Tips for Troubleshooting Common Issues PowerCenter 8 Standard Edition Eugene Gonzalez Support Enablement Manager, Informatica 1 Agenda Troubleshooting PowerCenter issues require a

More information

Rhythmyx Installing Rhythmyx

Rhythmyx Installing Rhythmyx Rhythmyx Installing Rhythmyx Version 7.0.3 Printed on 5 October, 2011 Copyright and Licensing Statement All intellectual property rights in the SOFTWARE and associated user documentation, implementation

More information

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://

IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps:// IT Certification Exams Provider! Weofferfreeupdateserviceforoneyear! h ps://www.certqueen.com Exam : 1Z0-067 Title : Upgrade Oracle9i/10g/11g OCA to Oracle Database 12c OCP Version : DEMO 1 / 7 1.Which

More information

DBTuna 2.x Quick Start Guide 12 September 2012

DBTuna 2.x Quick Start Guide 12 September 2012 DBTuna 2.x Quick Start Guide 12 September 2012 This guide describes basic steps for starting the DBTuna server software, and configuring and running DBTuna monitoring Agents. The guide is intended for

More information

Oracle Audit Vault. Trust-but-Verify for Enterprise Databases. Tammy Bednar Sr. Principal Product Manager Oracle Database Security

Oracle Audit Vault. Trust-but-Verify for Enterprise Databases. Tammy Bednar Sr. Principal Product Manager Oracle Database Security Oracle Audit Vault Trust-but-Verify for Enterprise Databases Tammy Bednar Sr. Principal Product Manager Oracle Database Security Agenda Business Drivers Audit Vault Overview Audit

More information

The Modern Mainframe At the Heart of Your Business

The Modern Mainframe At the Heart of Your Business The Modern Mainframe At the Heart of Your Business IT Service Management Service Oriented Finance Needs to Satisfy Service Levels For Their Critical Applications I must make sure to meet my service levels.

More information

20764C: Administering a SQL Database Infrastructure

20764C: Administering a SQL Database Infrastructure 20764C: Administering a SQL Database Infrastructure Course Details Course Code: Duration: Notes: 20764C 5 days This course syllabus should be used to determine whether the course is appropriate for the

More information

ManageEngine EventLog Analyzer Quick Start Guide

ManageEngine EventLog Analyzer Quick Start Guide ManageEngine EventLog Analyzer Quick Start Guide Contents Installing and starting EventLog Analyzer Connecting to the EventLog Analyzer server Adding devices for monitoring Adding Windows devices Adding

More information

AS/400 V4R5 Maximum Capacities

AS/400 V4R5 Maximum Capacities AS/400 V4R5 Maximum Capacities Robert Gintowt IBM Rochester gintowt@us.ibm.com Contents Appendix A. AS/400 V4R5 Maximum Capacities 12 Limits for Database and SQL ii Limits for Communications iii Limits

More information

Embarcadero DB Optimizer 1.5 SQL Profiler User Guide

Embarcadero DB Optimizer 1.5 SQL Profiler User Guide Embarcadero DB Optimizer 1.5 SQL Profiler User Guide Copyright 1994-2009 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All

More information

Monitor Qlik Sense sites. Qlik Sense Copyright QlikTech International AB. All rights reserved.

Monitor Qlik Sense sites. Qlik Sense Copyright QlikTech International AB. All rights reserved. Monitor Qlik Sense sites Qlik Sense 2.1.2 Copyright 1993-2015 QlikTech International AB. All rights reserved. Copyright 1993-2015 QlikTech International AB. All rights reserved. Qlik, QlikTech, Qlik Sense,

More information

Duration Level Technology Delivery Method Training Credits. Classroom ILT 5 Days Advanced SQL Server

Duration Level Technology Delivery Method Training Credits. Classroom ILT 5 Days Advanced SQL Server NE-20764C Administering a SQL Database Infrastructure Summary Duration Level Technology Delivery Method Training Credits Classroom ILT 5 Days Advanced SQL Virtual ILT On Demand SATV Introduction This 5-day

More information

Check Table Oracle Database Status Shell Script Monitor

Check Table Oracle Database Status Shell Script Monitor Check Table Oracle Database Status Shell Script Monitor oracle_dataguard_stats, Check various aspects of Data-Guard state All ORACLE related actions are directly done on the database hosts. The plugin

More information

Announcements. Reading. Project #1 due in 1 week at 5:00 pm Scheduling Chapter 6 (6 th ed) or Chapter 5 (8 th ed) CMSC 412 S14 (lect 5)

Announcements. Reading. Project #1 due in 1 week at 5:00 pm Scheduling Chapter 6 (6 th ed) or Chapter 5 (8 th ed) CMSC 412 S14 (lect 5) Announcements Reading Project #1 due in 1 week at 5:00 pm Scheduling Chapter 6 (6 th ed) or Chapter 5 (8 th ed) 1 Relationship between Kernel mod and User Mode User Process Kernel System Calls User Process

More information

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

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

More information