Scenario 2: Cognos SQL and Native SQL.

Size: px
Start display at page:

Download "Scenario 2: Cognos SQL and Native SQL."

Transcription

1 Proven Practice Scenario 2: Cognos SQL and Native SQL. Product(s): IBM Cognos ReportNet and IBM Cognos 8 Area of Interest: Performance

2 Scenario 2: Cognos SQL and Native SQL. 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated). Cognos ULC is an IBM Company. While every attempt has been made to ensure that the information in this document is accurate and complete, some typographical errors or technical inaccuracies may exist. Cognos does not accept responsibility for any kind of loss resulting from the use of information contained in this document. This document shows the publication date. The information contained in this document is subject to change without notice. Any improvements or changes to the information contained in this document will be documented in subsequent editions. This document contains proprietary information of Cognos. All rights are reserved. No part of this document may be copied, photocopied, reproduced, stored in a retrieval system, transmitted in any form or by any means, or translated into another language without the prior written consent of Cognos. Cognos and the Cognos logo are trademarks of Cognos ULC (formerly Cognos Incorporated) in the United States and/or other countries. IBM and the IBM logo are trademarks of International Business Machines Corporation in the United States, or other countries, or both. All other names are trademarks or registered trademarks of their respective companies. Information about Cognos products can be found at This document is maintained by the Best Practices, Product and Technology team. You can send comments, suggestions, and additions to cscogpp@ca.ibm.com.

3 Scenario 2: Cognos SQL and Native SQL. 3 Contents 1 INTRODUCTION PURPOSE APPLICABILITY EXCLUSIONS AND EXCEPTIONS THEORY BEHIND THE TECHNIQUE ANALYSING THE EXISTING NATIVE AND COGNOS SQL UPDATING THE EXISTING MODEL REFERENCE FILES... 6

4 Scenario 2: Cognos SQL and Native SQL. 4 1 Introduction 1.1 Purpose This document outlines how to optimize a specific report by evaluating the difference between the Native and Cognos SQL generated by a specific query. 1.2 Applicability This document applies to all known versions of ReportNet and IBM Cognos 8 available at the time this document was created. 1.3 Exclusions and Exceptions The technique outlined in this paper is suitable for identifying a possible performance issue by analysing the Native and Cognos SQL produced by slow performing query. This approach is scenario specific. 2 Theory behind the Technique When viewing the SQL of a query, a user can either view the Native or the Cognos SQL. The Native SQL is what is being passed to the database. Where the Cognos SQL is the entire SQL used to perform the SQL. In certain scenarios, the native SQL will be a subset of the Cognos SQL which may indicate that the application will do some local processing. If the cause of the local processing can be identified, it may be possible to implement a report or model change to alleviate the local processing requirement. 3 Analysing the Existing Native and Cognos SQL Extract the Native and Cognos SQL for the given query: Native: select "RETURNED_ITEM"."RETURN_REASON_CODE" from "GOSL"."dbo"."RETURNED_ITEM" "RETURNED_ITEM" order by 1 asc select "RETAILER"."RETAILER_CODE" from "GORT"."dbo"."RETAILER" "RETAILER" order by 1 asc Cognos SQL: select 1 as C CubeDetailsItem, XSUM(RETAILER.RETAILER_CODE ) as RETAILER_CODE,

5 Scenario 2: Cognos SQL and Native SQL. 5 XSUM(RETURNED_ITEM.RETURN_REASON_CODE ) as RETURN_REASON_CODE from GOSL.GOSL.dbo.RETURNED_ITEM RETURNED_ITEM left outer join GORT.GORT.dbo.RETAILER RETAILER on (RETAILER.RETAILER_CODE = RETURNED_ITEM.RETURN_REASON_CODE) group by 1 The native SQL consists of two separate select statements. A closer look reveals that the qualifications are different. This indicates that each of the two columns come from a table in a different schema. The Cognos SQL shows that the query requires a left outer join relationship between the two tables. However, since this relationship is not included in the Native SQL, it is being processed locally. Depending on the size of the tables involved this may impact performance. Due to the different schema qualifications, the tables were imported as two different data sources. These force the application to treat the query as federated. 4 Updating the existing model The model will need to be updated to include both tables under the same data source. This can be done either with an Oracle user which has access to both schemas or via a cross schema view. Once the model has been updated both the Native and Cognos SQL will contain the left outer join. Native: select distinct "RETAILER"."RETAILER_CODE" "RETAILER_CODE", "RETURNED_ITEM"."RETURN_CODE" "RETURN_CODE" from "GORT"."RETAILER" "RETAILER" LEFT OUTER JOIN "GOSL"."RETURNED_ITEM" "RETURNED_ITEM" on "RETAILER"."RETAILER_CODE"="RETURNED_ITEM"."RETURN_REASON_CODE" Cognos: select distinct RETAILER.RETAILER_CODE as RETAILER_CODE, RETURNED_ITEM.RETURN_CODE as RETURN_CODE from OracleSystem..GORT.RETAILER RETAILER left outer join

6 Scenario 2: Cognos SQL and Native SQL. 6 OracleSystem..GOSL.RETURNED_ITEM RETURNED_ITEM on (RETURNED_ITEM.RETURN_REASON_CODE = RETAILER.RETAILER_CODE) 5 Reference Files The model created for this example is based on the GO Sales Retailers and GO Data Warehouse sample data and model. This new model can exist on separately from the GO Data Warehouse model but depends on the sample database to execute the queries. Follow the instructions available in the User Guides to restore the sample data for this application. MultipleSchema.zip MultipleSchemasOracleUID.zip The published package and report sample (generated using ReportNet 1.1 MR2) are included in the following deployment file. See the Administration and Security Guide for details on importing deployment files. FederatedQueries.zip Includes both the Problem (MultipleSchemas) and the Solution (MultipleSchemasOracleUID)

Multiple Aligned Column Headers in Lists and Crosstabs

Multiple Aligned Column Headers in Lists and Crosstabs Tip or Technique Multiple Aligned Column Headers in Lists and Crosstabs Product(s): IBM Cognos 8 Area of Interest: Report Design Multiple Aligned Column Headers in Lists and Crosstabs 2 Copyright Copyright

More information

Creating IBM Cognos Controller Databases using Microsoft SQL Server

Creating IBM Cognos Controller Databases using Microsoft SQL Server Guideline Creating IBM Cognos Controller Databases using Microsoft SQL Product(s): IBM Cognos Controller 8.1 or higher Area of Interest: Financial Management 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

Configuring IBM Cognos Controller 8 to use Single Sign- On

Configuring IBM Cognos Controller 8 to use Single Sign- On Guideline Configuring IBM Cognos Controller 8 to use Single Sign- On Product(s): IBM Cognos Controller 8.2 Area of Interest: Security Configuring IBM Cognos Controller 8 to use Single Sign-On 2 Copyright

More information

Table of Contents. 4 Receivables Analytics for Oracle E-Business Suite

Table of Contents. 4 Receivables Analytics for Oracle E-Business Suite IBM Cognos 8 Financial Performance Receivables Analytics for Oracle E-Business Suite USER GUIDE Product Information This document applies to IBM Cognos 8 Financial Performance Version 8.3 and may also

More information

UltraQuest Cloud Server. White Paper Version 1.0

UltraQuest Cloud Server. White Paper Version 1.0 Version 1.0 Disclaimer and Trademarks Select Business Solutions, Inc. 2015. All Rights Reserved. Information in this document is subject to change without notice and does not represent a commitment on

More information

Fact Sheet In-Memory Analysis

Fact Sheet In-Memory Analysis Fact Sheet In-Memory Analysis 1 Copyright Yellowfin International 2010 Contents In Memory Overview...3 Benefits...3 Agile development & rapid delivery...3 Data types supported by the In-Memory Database...4

More information

How To Connect A Java To A Microsoft Database To An Ibm.Com Database On A Microsq Server On A Blackberry (Windows) Computer (Windows 2000) On A Powerpoint (Windows 5) On An Ubio.Com

How To Connect A Java To A Microsoft Database To An Ibm.Com Database On A Microsq Server On A Blackberry (Windows) Computer (Windows 2000) On A Powerpoint (Windows 5) On An Ubio.Com Guideline Setting Up a Microsoft SQL Server JDBC Connection within IBM Product(s): IBM Area of Interest: Infrastructure 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright IBM Corp.

More information

Troubleshooting Active Directory Server

Troubleshooting Active Directory Server Proven Practice Troubleshooting Active Directory Server Product(s): IBM Cognos Series 7 Area of Interest: Security Troubleshooting Active Directory Server 2 Copyright Copyright 2008 Cognos ULC (formerly

More information

Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal

Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal Guideline Enabling Single Signon with IBM Cognos ReportNet and SAP Enterprise Portal Product(s): IBM Cognos ReportNet Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).

More information

Enabling Single Signon with IBM Cognos 8 BI MR1 and SAP Enterprise Portal

Enabling Single Signon with IBM Cognos 8 BI MR1 and SAP Enterprise Portal Guideline Enabling Single Signon with IBM Cognos 8 BI MR1 and SAP Enterprise Portal Product: IBM Cognos 8 BI Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).

More information

Table of Contents. 4 General Ledger Analytics for Oracle E-Business Suite

Table of Contents. 4 General Ledger Analytics for Oracle E-Business Suite IBM Cognos 8 Financial Performance General Ledger Analytics for Oracle E-Business Suite USER GUIDE Product Information This document applies to IBM Cognos 8 Financial Performance Version 8.3 and may also

More information

Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies

Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies Guideline Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies Product(s): IBM Cognos 8 BI Area of Interest: Security Integrating IBM Cognos 8 BI with 3rd Party Auhtentication Proxies 2 Copyright

More information

DEPLOYMENT ROADMAP March 2015

DEPLOYMENT ROADMAP March 2015 DEPLOYMENT ROADMAP March 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may

More information

Enabling Single-Sign-On on WebSphere Portal in IBM Cognos ReportNet

Enabling Single-Sign-On on WebSphere Portal in IBM Cognos ReportNet Guideline Enabling Single-Sign-On on WebSphere Portal in IBM Cognos ReportNet Product(s): IBM Cognos ReportNet Area of Interest: Security 2 Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).

More information

Enabling Single-Sign-On between IBM Cognos 8 BI and IBM WebSphere Portal

Enabling Single-Sign-On between IBM Cognos 8 BI and IBM WebSphere Portal Guideline Enabling Single-Sign-On between IBM Cognos 8 BI and IBM WebSphere Portal Product(s): IBM Cognos 8 BI Area of Interest: Security Copyright Copyright 2008 Cognos ULC (formerly Cognos Incorporated).

More information

Feith Rules Engine Version 8.1 Install Guide

Feith Rules Engine Version 8.1 Install Guide Feith Rules Engine Version 8.1 Install Guide Feith Rules Engine Version 8.1 Install Guide Copyright 2011 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced,

More information

GENWARE COMPUTER SYSTEMS AUDITING SOLUTION FOR COGNOS BUSINESS INTELLIGENCE

GENWARE COMPUTER SYSTEMS AUDITING SOLUTION FOR COGNOS BUSINESS INTELLIGENCE GENWARE COMPUTER SYSTEMS AUDITING SOLUTION FOR COGNOS BUSINESS INTELLIGENCE TECHNOLOGY PARTNER COGNOS CERTIFIED VALUE PROPOSITION AND BUSINESS OPPORTUNITIES Genware Computer Systems works with their clients

More information

The strategic importance of OLAP and multidimensional analysis A COGNOS WHITE PAPER

The strategic importance of OLAP and multidimensional analysis A COGNOS WHITE PAPER The strategic importance of OLAP and multidimensional analysis A COGNOS WHITE PAPER While every attempt has been made to ensure that the information in this document is accurate and complete, some typographical

More information

Business Intelligence Tool Migration. Title: Domain: Client: Location:

Business Intelligence Tool Migration. Title: Domain: Client: Location: Business Intelligence Tool Migration Title: Domain: Client: Location: Business Objects to MicroStrategy Conversion Payment Services Major Payments Processing Services Provider Northville, MI Project Description

More information

Treemap by Category Visualizations. Product: IBM Cognos Active Report Area of Interest: Reporting

Treemap by Category Visualizations. Product: IBM Cognos Active Report Area of Interest: Reporting Treemap by Category Visualizations Product: IBM Cognos Active Report Area of Interest: Reporting Treemap by Category Visualizations 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright

More information

Creating Mailing Lables in IBM Cognos 8 Report Studio

Creating Mailing Lables in IBM Cognos 8 Report Studio Tip or Technique Creating Mailing Lables in IBM Cognos 8 Report Studio Product(s): IBM Cognos 8.4 Area of Interest: Reporting Creating Mailing Lables in IBM Cognos 8 Report Studio 2 Copyright and Trademarks

More information

The IBM Cognos Platform for Enterprise Business Intelligence

The IBM Cognos Platform for Enterprise Business Intelligence The IBM Cognos Platform for Enterprise Business Intelligence Highlights Optimize performance with in-memory processing and architecture enhancements Maximize the benefits of deploying business analytics

More information

Implementing Failover through Load Balancing within IBM Cognos 8

Implementing Failover through Load Balancing within IBM Cognos 8 Guideline Implementing Failover through Load Balancing within IBM Cognos 8 Product(s): IBM Cognos 8 Area of Interest: Infrastructure 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.

More information

Cognos (R) 8 Analytic Applications

Cognos (R) 8 Analytic Applications Cognos(R) 8 Analytic Applications Installation and Configuration Guide INSTALLATION AND CONFIGURATION GUIDE Cognos (R) 8 Analytic Applications INSTALLATION AND CONFIGURATION GUIDE Product Information This

More information

Using Temporary Tables to Improve Performance for SQL Data Services

Using Temporary Tables to Improve Performance for SQL Data Services Using Temporary Tables to Improve Performance for SQL Data Services 2014- Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

IBM Cognos Planning Data Validation Example

IBM Cognos Planning Data Validation Example IBM Cognos Planning Data Validation Example Nature of Document: Tip or Technique Product(s): IBM Cognos Planning Area of Interest: Modeling 2 Copyright and Trademarks Licensed Materials - Property of IBM.

More information

Tip and Technique on creating adhoc reports in IBM Cognos Controller

Tip and Technique on creating adhoc reports in IBM Cognos Controller Tip or Technique Tip and Technique on creating adhoc reports in IBM Cognos Product(s): IBM Cognos Area of Interest: Financial Management 2 Copyright and Trademarks Licensed Materials - Property of IBM.

More information

CDP Support Guide. Support Plans & Services

CDP Support Guide. Support Plans & Services CDP Support Guide Support Plans & Services V10 Date: July 2014 Background... 3 Overview... 3 CDP support team... 3 Prevailing document... 3 Supported products... 4 IBM Cognos... 4 IBM Information Management...

More information

Extensible Visualizations. Product: IBM Cognos Business Intelligence Area of Interest: Reporting

Extensible Visualizations. Product: IBM Cognos Business Intelligence Area of Interest: Reporting Extensible Visualizations Product: IBM Cognos Business Intelligence Area of Interest: Reporting Extensible Visualizations 2 Copyright and Trademarks Licensed Materials - Property of IBM. Copyright IBM

More information

IBM TRIRIGA Application Platform Version 3.3.2. Reporting: Creating Cross-Tab Reports in BIRT

IBM TRIRIGA Application Platform Version 3.3.2. Reporting: Creating Cross-Tab Reports in BIRT IBM TRIRIGA Application Platform Version 3.3.2 Reporting: Creating Cross-Tab Reports in BIRT Cheng Yang Application Developer IBM TRIRIGA Copyright International Business Machines Corporation 2013. US

More information

Fast and Easy Delivery of Data Mining Insights to Reporting Systems

Fast and Easy Delivery of Data Mining Insights to Reporting Systems Fast and Easy Delivery of Data Mining Insights to Reporting Systems Ruben Pulido, Christoph Sieb rpulido@de.ibm.com, christoph.sieb@de.ibm.com Abstract: During the last decade data mining and predictive

More information

Chapter 9 Joining Data from Multiple Tables. Oracle 10g: SQL

Chapter 9 Joining Data from Multiple Tables. Oracle 10g: SQL Chapter 9 Joining Data from Multiple Tables Oracle 10g: SQL Objectives Identify a Cartesian join Create an equality join using the WHERE clause Create an equality join using the JOIN keyword Create a non-equality

More information

Combination Chart Extensible Visualizations. Product: IBM Cognos Business Intelligence Area of Interest: Reporting

Combination Chart Extensible Visualizations. Product: IBM Cognos Business Intelligence Area of Interest: Reporting Combination Chart Extensible Visualizations Product: IBM Cognos Business Intelligence Area of Interest: Reporting Combination Chart Extensible Visualizations 2 Copyright and Trademarks Licensed Materials

More information

The LivePerson Tag. Technical Data Sheet. Document Version: 1.0. December 2012

The LivePerson Tag. Technical Data Sheet. Document Version: 1.0. December 2012 Document Version: 1.0 December 2012 Introduction enables you to implement innovative LivePerson products and applications, and the ability to monitor your website traffic, without the need to continually

More information

IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance

IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance Data Sheet IBM Cognos 8 Business Intelligence Analysis Discover the factors driving business performance Overview Multidimensional analysis is a powerful means of extracting maximum value from your corporate

More information

Big Data Analytics with IBM Cognos BI Dynamic Query IBM Redbooks Solution Guide

Big Data Analytics with IBM Cognos BI Dynamic Query IBM Redbooks Solution Guide Big Data Analytics with IBM Cognos BI Dynamic Query IBM Redbooks Solution Guide IBM Cognos Business Intelligence (BI) helps you make better and smarter business decisions faster. Advanced visualization

More information

IBM Cognos Analysis for Microsoft Excel

IBM Cognos Analysis for Microsoft Excel IBM Software Group Data Sheet IBM Cognos Analysis for Microsoft Excel Highlights Explore and analyze trusted and secure BI data in a familiar spreadsheet format Develop high frequency and high priority

More information

Server Consolidation with SQL Server 2008

Server Consolidation with SQL Server 2008 Server Consolidation with SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 supports multiple options for server consolidation, providing organizations

More information

Failover Manager for WhatsUp Gold v16.0 Quick Start Guide

Failover Manager for WhatsUp Gold v16.0 Quick Start Guide Failover Manager for WhatsUp Gold v16.0 Quick Start Guide Contents About the WhatsUp Gold Failover Manager Failover is a mechanism with the capacity to automatically switch from a primary installation

More information

Data Domain Discovery in Test Data Management

Data Domain Discovery in Test Data Management Data Domain Discovery in Test Data Management 1993-2016 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

More information

Data Domain Profiling and Data Masking for Hadoop

Data Domain Profiling and Data Masking for Hadoop Data Domain Profiling and Data Masking for Hadoop 1993-2015 Informatica LLC. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or

More information

Upgrade to Oracle E-Business Suite R12 While Controlling the Impact of Data Growth WHITE PAPER

Upgrade to Oracle E-Business Suite R12 While Controlling the Impact of Data Growth WHITE PAPER Upgrade to Oracle E-Business Suite R12 While Controlling the Impact of Data Growth WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information )

More information

AvePoint CRM Migration Manager for Microsoft Dynamics CRM. Release Notes

AvePoint CRM Migration Manager for Microsoft Dynamics CRM. Release Notes AvePoint CRM Migration Manager for Microsoft Release Notes AvePoint CRM Migration Manager 3.1.1 for Microsoft Release Date: July 16, 2014 Required Minimum Version for Direct Update New License Required?

More information

SQL Server 2012 Gives You More Advanced Features (Out-Of-The-Box)

SQL Server 2012 Gives You More Advanced Features (Out-Of-The-Box) SQL Server 2012 Gives You More Advanced Features (Out-Of-The-Box) SQL Server White Paper Published: January 2012 Applies to: SQL Server 2012 Summary: This paper explains the different ways in which databases

More information

DOCUMENTATION FILE RESTORE

DOCUMENTATION FILE RESTORE DOCUMENTATION Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may be reproduced, transmitted, transcribed,

More information

IBM Cognos Performance Management Solutions for Oracle

IBM Cognos Performance Management Solutions for Oracle IBM Cognos Performance Management Solutions for Oracle Gain more value from your Oracle technology investments Highlights Deliver the power of predictive analytics across the organization Address diverse

More information

Mapping Analyst for Excel Guide

Mapping Analyst for Excel Guide Mapping Analyst for Excel Guide Informatica PowerCenter (Version 8.6.1) Informatica Mapping Analyst for Excel Guide Version 8.6.1 March 2009 Copyright (c) 1998 2009 Informatica Corporation. All rights

More information

David M. Kroenke and David J. Auer Database Processing 11 th Edition Fundamentals, Design, and Implementation. Chapter Objectives

David M. Kroenke and David J. Auer Database Processing 11 th Edition Fundamentals, Design, and Implementation. Chapter Objectives David M. Kroenke and David J. Auer Database Processing 11 th Edition Fundamentals, Design, and Implementation Chapter One: Introduction 1-1 Chapter Objectives To understand the nature and characteristics

More information

SimCorp Solution Guide

SimCorp Solution Guide SimCorp Solution Guide Data Warehouse Manager For all your reporting and analytics tasks, you need a central data repository regardless of source. SimCorp s Data Warehouse Manager gives you a comprehensive,

More information

TECHNOLOGY BRIEF: CA ERWIN SAPHIR OPTION. CA ERwin Saphir Option

TECHNOLOGY BRIEF: CA ERWIN SAPHIR OPTION. CA ERwin Saphir Option TECHNOLOGY BRIEF: CA ERWIN SAPHIR OPTION CA ERwin Saphir Option Table of Contents Executive Summary SECTION 1 2 Introduction SECTION 2: OPPORTUNITY 2 Modeling ERP Systems ERP Systems and Data Warehouses

More information

Replicating Salesforce.com Data for Operational Reporting and Compliance WHITE PAPER

Replicating Salesforce.com Data for Operational Reporting and Compliance WHITE PAPER Replicating Salesforce.com Data for Operational Reporting and Compliance WHITE PAPER This document contains Confidential, Proprietary and Trade Secret Information ( Confidential Information ) of Informatica

More information

Rational Reporting. Module 2: IBM Rational Insight Data Warehouse

Rational Reporting. Module 2: IBM Rational Insight Data Warehouse Rational Reporting Module 2: IBM Rational Insight Data Warehouse 1 Copyright IBM Corporation 2012 What s next? Module 1: RRDI and IBM Rational Insight Introduction Module 2: IBM Rational Insight Data Warehouse

More information

David M. Kroenke and David J. Auer Database Processing 12 th Edition

David M. Kroenke and David J. Auer Database Processing 12 th Edition David M. Kroenke and David J. Auer Database Processing 12 th Edition Fundamentals, Design, and Implementation ti Chapter One: Introduction Modified & translated by Walter Chen Dept. of Civil Engineering

More information

Oracle FLEXCUBE Universal Banking 12.0

Oracle FLEXCUBE Universal Banking 12.0 Oracle FLEXCUBE Universal Banking 12.0 Data Model Getting Started Release 1.0 May 2012 Oracle Part Number E51527-01 FCUBS-FD08-01-01-Data Model getting started 1 Contents 1 Preface... 3 1.1 Audience...

More information

Feith Document Database Version 8.1 Install Guide

Feith Document Database Version 8.1 Install Guide Feith Document Database Version 8.1 Install Guide Feith Document Database Version 8.1 Install Guide Copyright 2011 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may

More information

MDM Multidomain Edition (Version 9.6.0) For Microsoft SQL Server Performance Tuning

MDM Multidomain Edition (Version 9.6.0) For Microsoft SQL Server Performance Tuning MDM Multidomain Edition (Version 9.6.0) For Microsoft SQL Server Performance Tuning 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice.

Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Trend Micro Incorporated reserves the right to make changes to this document and to the products described herein without notice. Before installing and using the software, please review the readme. This

More information

LivePerson Training Services Catalog

LivePerson Training Services Catalog LivePerson Training Services Catalog Empower your organization and drive maximum results! LivePerson training is customized to meet your organization s specific needs! Learn at any time, in any place Choose

More information

Consolidation process in IBM Cognos Controller using Batch Processing

Consolidation process in IBM Cognos Controller using Batch Processing Guideline Consolidation process in IBM Cognos Controller using Batch Product(s): IBM Cognos Controller Area of Interest: Financial Management 2 Copyright and Trademarks Licensed Materials - Property of

More information

SharePlex for SQL Server

SharePlex for SQL Server SharePlex for SQL Server Improving analytics and reporting with near real-time data replication Written by Susan Wong, principal solutions architect, Dell Software Abstract Many organizations today rely

More information

Working with the Call Center

Working with the Call Center Quick Reference: Call Center Working with the Call Center Contents Roadmap: Working with web-based patients... 2 Roadmap: Working with phone-based patients... 4 Roadmap: Working with paper-based patients...

More information

What s New. Archive Attender 4 For Microsoft Exchange. www.re-soft.com 203 972 8462

What s New. Archive Attender 4 For Microsoft Exchange. www.re-soft.com 203 972 8462 What s New Archive Attender 4 For Microsoft Exchange Table of Contents Overview... 4 Product Architecture... 5 Archive Attender 4 Service Components... 5 Hub Service... 5 Exchange Service... 6 Archive

More information

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 1. Introduction Oracle provides products that reduce the time, risk,

More information

TaskCentre v4.5 Run Crystal Report Tool White Paper

TaskCentre v4.5 Run Crystal Report Tool White Paper TaskCentre v4.5 Run Crystal Report Tool White Paper Document Number: PD500-03-13-1_0-WP Orbis Software Limited 2010 Table of Contents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 Features 2 TECHNICAL

More information

How to Configure a Secure Connection to Microsoft SQL Server

How to Configure a Secure Connection to Microsoft SQL Server How to Configure a Secure Connection to Microsoft SQL Server 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Migrate AS 400 Applications to Windows, UNIX or Linux

Migrate AS 400 Applications to Windows, UNIX or Linux Migrate AS 400 Applications to Windows, UNIX or Linux INFINITE Corporation White Paper prepared for Infinite Product Group date January 2012 Abstract: This paper is a discussion of how to create platform

More information

IBM Cognos 10: Enhancing query processing performance for IBM Netezza appliances

IBM Cognos 10: Enhancing query processing performance for IBM Netezza appliances IBM Software Business Analytics Cognos Business Intelligence IBM Cognos 10: Enhancing query processing performance for IBM Netezza appliances 2 IBM Cognos 10: Enhancing query processing performance for

More information

Making Business Intelligence Easy. Whitepaper Measuring data quality for successful Master Data Management

Making Business Intelligence Easy. Whitepaper Measuring data quality for successful Master Data Management Making Business Intelligence Easy Whitepaper Measuring data quality for successful Master Data Management Contents Overview... 3 What is Master Data Management?... 3 Master Data Modeling Approaches...

More information

Difference Between Non-perpetual (Periodic) and Perpetual Inventory

Difference Between Non-perpetual (Periodic) and Perpetual Inventory Difference Between Non-perpetual (Periodic) and Perpetual Inventory Overall Business Processes SYSTEM BASIC INITIALIZATION Related Business Process FINANCIAL ACCOUNTING Responsible Department ACCOUNTING

More information

Best Practices with IBM Cognos Framework Manager & the SAP Business Warehouse Agnes Chau Cognos SAP Solution Specialist

Best Practices with IBM Cognos Framework Manager & the SAP Business Warehouse Agnes Chau Cognos SAP Solution Specialist Best Practices with IBM Cognos Framework Manager & the SAP Business Warehouse Agnes Chau Cognos SAP Solution Specialist 2008 IBM Corporation Agenda Objective Interoperability Prerequisites Where to model

More information

COGNOS (R) ENTERPRISE PLANNING SERIES

COGNOS (R) ENTERPRISE PLANNING SERIES COGNOS (R) ENTERPRISE PLANNING SERIES COGNOS PLANNING DATABASE ADMINISTRATOR (DBA) GUIDE Cognos Planning Database Administrator (DBA) Guide Cognos Planning Database Administrator (DBA) Guide DATABASE ADMINISTRATOR

More information

DOCUMENTATION SYSTEM STATE BACKUP & RESTORE OPERATIONS

DOCUMENTATION SYSTEM STATE BACKUP & RESTORE OPERATIONS DOCUMENTATION SYSTEM STATE BACKUP & RESTORE OPERATIONS Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication may

More information

White Paper. Myths about Historians. What s Inside: Author: Elliott Middleton, Product Manager, Historian & Clients, Invensys Operations Management

White Paper. Myths about Historians. What s Inside: Author: Elliott Middleton, Product Manager, Historian & Clients, Invensys Operations Management White Paper Myths about Historians Author: Elliott Middleton, Product Manager, Historian & Clients, Invensys Operations Management What s Inside: Introduction Myth #1: Storage is so cheap that efficiency

More information

Pipeliner CRM Phaenomena Guide Lead Management. 2015 Pipelinersales Inc. www.pipelinersales.com

Pipeliner CRM Phaenomena Guide Lead Management. 2015 Pipelinersales Inc. www.pipelinersales.com Lead Management 205 Pipelinersales Inc. www.pipelinersales.com Lead Management Learn how to use sales lead management with Pipeliner Sales CRM Application. CONTENT. Creating and sharing the Sales Lead

More information

Sage 100 ERP Intelligence. Citrix Environment Installation Guide

Sage 100 ERP Intelligence. Citrix Environment Installation Guide Sage 100 ERP Citrix Environment Installation Guide The software described in this document is protected by copyright and may not be copied on any medium except as specifically authorized in the license

More information

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION

ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION ORACLE BUSINESS INTELLIGENCE, ORACLE DATABASE, AND EXADATA INTEGRATION EXECUTIVE SUMMARY Oracle business intelligence solutions are complete, open, and integrated. Key components of Oracle business intelligence

More information

QUERY PERFORMANCE TUNING IN SQL SERVER PDF

QUERY PERFORMANCE TUNING IN SQL SERVER PDF QUERY PERFORMANCE TUNING IN SQL SERVER PDF ==> Download: QUERY PERFORMANCE TUNING IN SQL SERVER PDF QUERY PERFORMANCE TUNING IN SQL SERVER PDF - Are you searching for Query Performance Tuning In Sql Server

More information

AvePoint Record Rollback for Microsoft Dynamics CRM

AvePoint Record Rollback for Microsoft Dynamics CRM AvePoint Record Rollback for Microsoft Dynamics Release Notes 1 AvePoint Record Rollback 3.1.2 for Microsoft Dynamics Release Date: January 30, 2014 Required Minimum Version for Direct Update Supported

More information

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM

AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM AvePoint SearchAll 3.0.2 for Microsoft Dynamics CRM User Guide Revision E Issued April 2014 1 Table of Contents Overview... 3 Getting Started... 4 Understanding the SearchAll User Interface... 4 Using

More information

Database Backup and Recovery Guide

Database Backup and Recovery Guide Scout Diagnostics Database Backup and Recovery Guide P H 803. 358. 3600 F A X 803. 358. 3636 WWW.AVTECINC.COM 100 I N N O VAT I O N P L ACE, L E X I N G T O N SC 29072 Copyright 2013 by Avtec, Inc. All

More information

IBM Lotus Enterprise Integrator (LEI) for Domino. Version 8.5.2. August 17, 2010

IBM Lotus Enterprise Integrator (LEI) for Domino. Version 8.5.2. August 17, 2010 IBM Lotus Enterprise Integrator (LEI) for Domino Version 8.5.2 August 17, 2010 A) What's new in LEI V8.5.2 B) System requirements C) Installation considerations D) Operational considerations E) What's

More information

User Pass-Through Authentication in IBM Cognos 8 (SSO to data sources)

User Pass-Through Authentication in IBM Cognos 8 (SSO to data sources) User Pass-Through Authentication in IBM Cognos 8 (SSO to data sources) Nature of Document: Guideline Product(s): IBM Cognos 8 BI Area of Interest: Security Version: 1.2 2 Copyright and Trademarks Licensed

More information

UNIX Operating Environment

UNIX Operating Environment 97 CHAPTER 14 UNIX Operating Environment Specifying File Attributes for UNIX 97 Determining the SAS Release Used to Create a Member 97 Creating a Transport File on Tape 98 Copying the Transport File from

More information

An Oracle White Paper November 2010. Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics

An Oracle White Paper November 2010. Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics An Oracle White Paper November 2010 Leveraging Massively Parallel Processing in an Oracle Environment for Big Data Analytics 1 Introduction New applications such as web searches, recommendation engines,

More information

ADVANTAGES OF IMPLEMENTING A DATA WAREHOUSE DURING AN ERP UPGRADE

ADVANTAGES OF IMPLEMENTING A DATA WAREHOUSE DURING AN ERP UPGRADE ADVANTAGES OF IMPLEMENTING A DATA WAREHOUSE DURING AN ERP UPGRADE Advantages of Implementing a Data Warehouse During an ERP Upgrade Upgrading an ERP system presents a number of challenges to many organizations.

More information

Oracle BI 10g: Analytics Overview

Oracle BI 10g: Analytics Overview Oracle BI 10g: Analytics Overview Student Guide D50207GC10 Edition 1.0 July 2007 D51731 Copyright 2007, Oracle. All rights reserved. Disclaimer This document contains proprietary information and is protected

More information

Microsoft s SQL Server Parallel Data Warehouse Provides High Performance and Great Value

Microsoft s SQL Server Parallel Data Warehouse Provides High Performance and Great Value Microsoft s SQL Server Parallel Data Warehouse Provides High Performance and Great Value Published by: Value Prism Consulting Sponsored by: Microsoft Corporation Publish date: March 2013 Abstract: Data

More information

Fact Sheet Yellowfin & Cloud Computing

Fact Sheet Yellowfin & Cloud Computing Fact Sheet Yellowfin & Cloud Computing 1 Copyright Yellowfin International 2010 Contents Contents...2 What is Cloud Computing...3 Defining types of Cloud Computing...3 Deployment models: Public, Private,

More information

Endpoint web control overview guide. Sophos Web Appliance Sophos Enterprise Console Sophos Endpoint Security and Control

Endpoint web control overview guide. Sophos Web Appliance Sophos Enterprise Console Sophos Endpoint Security and Control Endpoint web control overview guide Sophos Web Appliance Sophos Enterprise Console Sophos Endpoint Security and Control Document date: December 2011 Contents 1 Endpoint web control...3 2 Enterprise Console

More information

Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager

Rational Reporting. Module 3: IBM Rational Insight and IBM Cognos Data Manager Rational Reporting Module 3: IBM Rational Insight and IBM Cognos Data Manager 1 Copyright IBM Corporation 2012 What s next? Module 1: RRDI and IBM Rational Insight Introduction Module 2: IBM Rational Insight

More information

DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS

DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS DOCUMENTATION MICROSOFT SQL BACKUP & RESTORE OPERATIONS Copyright Notice The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part of this publication

More information

High Availability And Disaster Recovery

High Availability And Disaster Recovery High Availability And Disaster Recovery Copyright 2011 Deepnet Security Limited Copyright 2011, Deepnet Security. All Rights Reserved. Page 1 Trademarks Deepnet Unified Authentication, MobileID, QuickID,

More information

KonyOne Server Prerequisites _ MS SQL Server

KonyOne Server Prerequisites _ MS SQL Server KonyOne Server Prerequisites _ MS SQL Server KonyOne Platform Release 5.0 Copyright 2012-2013 Kony Solutions, Inc. All Rights Reserved. Page 1 of 13 Copyright 2012-2013 by Kony Solutions, Inc. All rights

More information

Using the Caché SQL Gateway

Using the Caché SQL Gateway Using the Caché SQL Gateway Version 2007.1 04 June 2007 InterSystems Corporation 1 Memorial Drive Cambridge MA 02142 www.intersystems.com Using the Caché SQL Gateway Caché Version 2007.1 04 June 2007 Copyright

More information

AvePoint Record Rollback for Microsoft Dynamics CRM. Release Notes

AvePoint Record Rollback for Microsoft Dynamics CRM. Release Notes AvePoint Record Rollback for Microsoft Dynamics Release Notes Table of Contents What s New in This Doucment... 3 AvePoint Record Rollback 3.1.3 for Microsoft Dynamics... 4 AvePoint Record Rollback 3.1.2

More information

HR Data Retrieval in a LDAP- Enabled Directory Service

HR Data Retrieval in a LDAP- Enabled Directory Service HR Data Retrieval in a LDAP- Enabled Directory Service HELP.PORTMANAGER Release 50A Copyright Copyright 2001 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

Configuring Hadoop Distributed File Service as an Optimized File Archive Store

Configuring Hadoop Distributed File Service as an Optimized File Archive Store Configuring Hadoop Distributed File Service as an Optimized File Archive Store 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Essbase Integration Services Release 7.1 New Features

Essbase Integration Services Release 7.1 New Features New Features Essbase Integration Services Release 7.1 New Features Congratulations on receiving Essbase Integration Services Release 7.1. Essbase Integration Services enables you to transfer the relevant

More information