Peak ETA Developers Guide

Size: px
Start display at page:

Download "Peak ETA Developers Guide"

Transcription

1 Oracle Business Intelligence 11g Peak ETA Developers Guide Antony Heljula / Paul Oprea January 2013

2 Peak Indicators Limited 2 Peak ETA Developers Guide Agenda About the Peak ETA Console About the Peak ETA Server Development Approach How It Works Loading a new Aggregate Error Handling

3 Peak ETA Developers Guide About the Peak ETA Console Peak Indicators Limited 3

4 Peak Indicators Limited 4 About the Peak ETA Console Logging In You can log onto the Peak ETA Console by using the following URL: To log on, you must use a user account which is granted the Peak ETA Admin role in the LDAP identity provider(s) used by WebLogic

5 Peak Indicators Limited 5 About the Peak ETA Console Current Load Overview This first screen provides an overview of the current (or latest) ETA load process: Button to start a new load process Graph to show the current load status of all the Aggregates within each Aggregate Group Status overview, showing details such as the current load status of each Aggregate Process flow of the Aggregate Groups (you can see how the Aggregate Groups are processed in sequence) A process flow for the Aggregates. You can see that the Aggregates within each group are processed in parallel

6 Peak Indicators Limited 6 About the Peak ETA Console Current Load Details Provides detailed information about the current (or latest) load of each Aggregate Table listing various attributes/metrics about the current status of each Aggregate Loading an Aggregate requires up to 6 individual steps, you can cycle through these steps to see full details such as timings, SQL and row counts. You also view error messages If an Aggregate failed to load, the Errors tab will list any error messages captured whilst loading the aggregate

7 Peak Indicators Limited 7 About the Peak ETA Console Aggregate Groups This is a simple screen enabling you to administer your Aggregate Groups: You need to specify a sequence number to determine the order in which the Aggregate Groups are processed The number of parallel threads for each Aggregate Group. In this example, the Aggregate Groups are configured to load up to 5 tables simultaneously Create, Delete, Save and Undo options for Aggregate Groups

8 Peak Indicators Limited 8 About the Peak ETA Console Aggregates This screen allows you to administer your Aggregates and specify how they should be incrementally loaded: Choose an Aggregate Group Full Reload or Incremental Update Option buttons to assist with the administration of Aggregates Options to run custom Logical SQL statements before/after Aggregate is loaded WHERE condition to define the incremental subset Business Model SQL used to populate the Aggregate (this is auto generated)

9 Peak Indicators Limited 9 About the Peak ETA Console Configuration Configuration parameters set during the installation process (see Peak ETA Installation Guide ): Enabling this option will force a full reload when the next load process is initiated. A full reload will force Aggregate tables to be truncated and fully reloaded with all records (the WHERE filters defined on the Aggregates screen are ignored)

10 Peak Indicators Limited 10 About the Peak ETA Console Server Log Files View OBI nqquery.log and Peak ETA Server log files (the log files must reside on the same server running the Peak ETA Console): Click the relevant button to view the log file

11 Peak Indicators Limited 11 About the Peak ETA Console Refreshing the Screen To refresh any screen, you simply click on the corresponding Tab Using the browser refresh button or pressing the F5 key does not refresh the screen with any new data, so you must use the Tabs to do a full screen refresh:

12 Peak ETA Developers Guide Using the Peak ETA Server Peak Indicators Limited 12

13 Peak Indicators Limited 13 Using the Peak ETA Server Overview The Peak ETA Server is a java parallel execution engine which can run on any platform. Scripts are provided for Windows and Linux The scripts can be invoked from the command-line or from within the Peak ETA Console ( Load Overview and Server Log Files screens) NOTE: To start the Peak ETA Server from the Peak ETA Console, the server scripts and console must be installed on the same server machine When the script is invoked, the output should be redirected to a peaketa.log file so that any error messages are captured for further analysis In order to run the Peak ETA Server process, you must have first configured the client.properties file (see Peak ETA Installation Guide)

14 Peak Indicators Limited 14 Using the Peak ETA Server Initiating from the Command Line Here is a sample command line to initiate the Peak ETA Server on a Windows machine and output the results to peaketa.log : C:\PeakETA\peaketa.bat > C:\PeakETA\peaketa.log 2>&1 NOTE: The 2>&1 syntax is required at the end to capture all debugging info And here is a similar command line for Linux:. /home/oracle/peaketa/peaketa.sh > /home/oracle/peaketa/peaketa.log

15 Peak Indicators Limited 15 Using the Peak ETA Server Protection from Multiple runs If you accidentally try to invoke the Peak ETA Server process whilst it is already running, you will see the following error message: The reason is that a peaketa.lock file is created when a new load process is started. It is then deleted once the process has completed The script starts by detecting if this peaketa.lock file exists, and will abort with the above error if it is detected If you do actually need to restart the process after a previous failure, then you can manually delete the peaketa.lock file in order to start the process again

16 Peak ETA Developers Guide Development Approach Peak Indicators Limited 16

17 Peak Indicators Limited 17 Development Approach Step 1 The first step is simple: you build and fully populate your aggregates using the exact same tools as you currently use with Oracle BI 11g: Exalytics Summary Advisor or Aggregate Persistence Wizard These tools will automatically perform the following: Create of aggregate tables and indexes Fully load of the aggregate tables Model the necessary aggregate metadata into the RPD Oracle Business Intelligence 11g Full Load TimesTen for Exalytics Summary Advisor or Aggregate Persistence Wizard

18 Peak Indicators Limited 18 Development Approach Step 2 Step 2 is even simpler! You just need to do the following: 1. Register the name of each aggregate in the Peak ETA Console 2. Define how each aggregate should be incrementally updated All other code is automatically generated That s it! You now have parallel incremental loading capability for your in-memory aggregates Oracle Business Intelligence 11g TimesTen for Exalytics Incremental Load (in parallel) Peak ETA

19 Peak ETA Developers Guide How It Works Peak Indicators Limited 19

20 Peak Indicators Limited 20 How It Works Step 1 - Aggregate Groups Within Peak ETA Console, you define groups of aggregates which are then processed in sequence The tables within each group are loaded in parallel You can configure the number of parallel threads in each group For example, you could have a sequence of 3 groups, each group is processed in parallel: Group 1: Dimensions Group 2: Daily Aggregates Group 3: Monthly Aggregates

21 Peak Indicators Limited 21 How It Works Step 2 - Aggregates Staying within the Peak ETA Console, you simply need to register each aggregate table The following details are required: 1. Aggregate table name 2. Key columns used for incremental update 3. Business Model SQL used to populate aggregate via the BI Server 4. WHERE clause filter to define incremental extract NOTE: The Business Model SQL is auto-generated

22 Peak Indicators Limited 22 How It Works Process Flow - START As the starting point, you have some TimesTen In-Memory Aggregates which have already been built and populated using the Exalytics Summary Advisor (or Aggregate Persistence Wizard) Target Aggregates Oracle Business Intelligence 11g

23 Peak Indicators Limited 23 How It Works Process Flow STEP 1 1. Peak ETA Server issues commands to build a set of Staging Aggregates (identical to the target aggregates). Done automatically no coding required Target Aggregates 1 Staging Aggregates Oracle Business Intelligence 11g Peak ETA

24 Peak Indicators Limited 24 How It Works Process Flow STEP 2 1. Peak ETA Server issues commands to build a set of Staging Aggregates (identical to the target aggregates). Target Aggregates Done automatically no coding required 2. Peak ETA Server instructs Oracle BI Server to populate the Staging Aggregates using an incremental extract and load Oracle Business Intelligence 11g 2 Staging Aggregates Peak ETA

25 Peak Indicators Limited 25 How It Works Process Flow STEP 3 1. Peak ETA Server issues commands to build a set of Staging Aggregates (identical to the target aggregates). Done automatically no coding required 2. Peak ETA Server instructs Oracle BI Server to populate the Staging Aggregates using an incremental extract and load 3. Peak ETA Server issues commands to incrementally update the Target Aggregates from the Staging Aggregates Done automatically no coding required Oracle Business Intelligence 11g Target Aggregates 3 Staging Aggregates Peak ETA

26 Peak Indicators Limited 26 How It Works All Steps Performed in Parallel For maximum efficiency, all parts of the process can be done in parallel Target Aggregates Staging Aggregates Oracle Business Intelligence 11g

27 Peak ETA Developers Guide Loading a new Aggregate Peak Indicators Limited 27

28 Peak Indicators Limited 28 Loading a New Aggregate Example In this example, we are going to create a new aggregate table called ag_fact_orders_yr to optimise the Analysis below which reports on the following data: 1. Business Group from the Organization dimension 2. Year from the Time dimension 3. Total Revenue (Millions) from the Order Lines fact The new Aggregate will be configured for incremental loading each load process will only extract data for the current year (rather than the whole history) 2 1 3

29 Peak Indicators Limited 29 Loading a New Aggregate Before you begin! So that Peak ETA Console can obtain the relevant Business Model SQL commands, you need to increase your session log level to 5 You can do this in two ways: 1. Set Log Level for an individual user (must be the user account which loads the data e.g. weblogic): Open up your BI Repository (RPD) and go to Manage > Identity Open up the properties for the relevant user and set Logging Level to 5 2. Set LOGLEVEL Session Variable: Create a Session Variable initialization block to set the LOGLEVEL system session variable to 5:

30 Peak Indicators Limited 30 Loading a New Aggregate Step 1 First of all, you should use the Exalytics Summary Advisor or the Aggregate Persistence Wizard to create your Aggregate table, populate it and then model it into the RPD In the example below, we have chosen to aggregate Fact Order Lines to Business Group and Year level: IMPORTANT NOTE! To improve join efficiency we have opted to use the Surrogate Key option for the Organization dimension

31 Peak Indicators Limited 31 Loading a New Aggregate Step 2 You should then run the resultant script to build the new set of Aggregates In this example, 3 new tables are created, loaded and modelled in the RPD: SA_Business0001A87 Organization dimension ( Business Group level) SA_Year0001C29 Time dimension ( Year level) Ag_Fact_Orders_Yr Fact table

32 Peak Indicators Limited 32 Loading a New Aggregate Step 3 If required, go to the Aggregate Groups screen of the Peak ETA Console and set up any new Aggregate Groups that may be needed: Our Time and Business Group dimension Aggregate tables will be added to the Dimensions Aggregate Group We ve created a new Aggregate Group Facts - Year for the Aggregate fact table

33 Peak Indicators Limited 33 Loading a New Aggregate Step 4 On the Aggregates screen, use the Create Aggregate button to create a new record Specify the name of the first Aggregate table (e.g. SA_Busines00001A87) and configure the following options: Update Strategy: Incremental Update (Delete/Insert) or Full Reload (Truncate/Insert) Disable Cache Hit: Do not query any data from the BI Server cache (default Yes ) Disable Cache Seed: Do not load the BI Server cache with the data extracted (default Yes ) Disable Summary Stats Logging: The queries generated will not be considered by the Summary Advisor (default Yes )

34 Peak Indicators Limited 34 Loading a New Aggregate Step 4 (Continued) Inactivate Target Schema: Specifies list of physical schemas which cannot be used as a source source for loading the aggregate. Click on the button to auto-populate this! Set to if you want it to be empty Update Columns: A comma-separated list of columns on which an incremental update will be based. During an incremental load, records in the target Aggregate will be deleted and replaced if the values in these columns exist in the staging Aggregate. For a dimension Aggregate, the Update Columns will typically be set to the dimension s unique key

35 Peak Indicators Limited 35 Loading a New Aggregate Step 4 (Continued) Surrogate Key Columns: If you used the surrogate key option when using the Aggregate Peristence Wizard then you should set this to be the column name of the surrogate key (leave blank otherwise) Aggregate SQL: Use the button to auto-populate this! The button will extract same the Business Model SQL that the Aggregate Persistence Wizard (or Summary Advisor) used to load the table. The SQL is obtained automatically from the nqquery.log file. Once populated, you should not need to modify the code afterwards

36 Peak Indicators Limited 36 Loading a New Aggregate Step 4 (Continued) WHERE Clause: Specify a WHERE clause filter to define the subset of records which should be extracted from the source database. Leave blank to extract all records. You can apply as many WHERE/AND filters as you like. In the example below, we are choosing to extract all records which have been updated since the last ETL Load Date (defined by a repository variable).

37 Peak Indicators Limited 37 Loading a New Aggregate Step 5 If you used the surrogate key option for the aggregate when using the Aggregate Persistence Wizard (or Summary Advisor), then you need to go to the Pre/Post SQL tab and click the button Generate Surrogate Key Lookup SQL This will auto-populate the Pre-SQL field with the SQL code to look up the existing surrogate key values in the target Aggregate and update them in the staging Aggregate. In addition, any new dimension records will have new surrogate key values generated automatically You can use these Pre/Post SQL fields to define Logical SQL commands that should be run against the BI Server before or after the target Aggregate is loaded

38 Peak Indicators Limited 38 Loading a New Aggregate Repeat You now just have to repeat Steps 4 and 5 for all your other Aggregate tables The Aggregate ag_fact_orders_yr has been placed in the Facts - Year Aggregate Group Remember to click the Save button after configuration each Aggregate! In this case, the incremental load will compare the Year values in the target and staging Aggregates. Records in the target Aggregate will be deleted if the Year value exists in the staging Aggregate. An INSERT command will then insert all records from the staging Aggregate, effectively replacing the deleted records. The DELETE/INSERT commands operate within a single database transaction In this case, only data for the current year will be extracted during an Incremental load and inserted into the target Aggregate (after all records for the same year have been deleted from the target Aggregate)

39 Peak Indicators Limited 39 Loading a New Aggregate Initiate Load That s it!! You can now start a new load process to perform the incremental load of all your Aggregates: Yellow signifies In Progress

40 Peak ETA Developers Guide Error Handling Peak Indicators Limited 40

41 Peak Indicators Limited 41 Error Handling Overview If an error occurs whilst loading an Aggregate, you will be alerted to this on the Current Load Overview screen In the example shown, all the Aggregates in the first Aggregate Group failed (because the database was unavailable) Whenever an error occurs, the load process will be aborted once the current Aggregate Group has completed (so no further Aggregate Groups will be processed) Red signifies a failure!

42 Peak Indicators Limited 42 Error Handling Details The Current Load Details screen will provide more detailed information about any errors which have occurred: The error message shows clearly that the issue was down to the database being unavailable

43 Peak Indicators Limited 43 Error Handling Server Logs Error messages will also be captured in the Peak ETA Server log file: The error message also shows clearly that the issue was down to the database being unavailable

44 Peak Indicators Limited 44 Error Handling Further Notes If a load process did not complete successfully, you can simply restart it again Upon restarting, the load process will start again from the beginning (a future enhancement will see the ability to restart the load from the point of failure!) There is no risk of data corruption, since each step of the load process is completely atomic (so it all succeeds or it all fails)

45 Questions? Peak Indicators Limited 45

46 Helping Your Business Intelligence Journey

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: + 36 1224 1760 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7.

More information

Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led

Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led Oracle BI 11g R1: Build Repositories Course OR102; 5 Days, Instructor-led Course Description This Oracle BI 11g R1: Build Repositories training is based on OBI EE release 11.1.1.7. Expert Oracle Instructors

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: 02 6968000 Oracle BI 11g R1: Build Repositories Duration: 5 Days What you will learn This course provides step-by-step procedures for building and verifying the three layers

More information

Two Success Stories - Optimised Real-Time Reporting with BI Apps

Two Success Stories - Optimised Real-Time Reporting with BI Apps Oracle Business Intelligence 11g Two Success Stories - Optimised Real-Time Reporting with BI Apps Antony Heljula October 2013 Peak Indicators Limited 2 Two Success Stories - Optimised Real-Time Reporting

More information

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda

1 Dulcian, Inc., 2001 All rights reserved. Oracle9i Data Warehouse Review. Agenda Agenda Oracle9i Warehouse Review Dulcian, Inc. Oracle9i Server OLAP Server Analytical SQL Mining ETL Infrastructure 9i Warehouse Builder Oracle 9i Server Overview E-Business Intelligence Platform 9i Server:

More information

Cognos Dynamic Cubes

Cognos Dynamic Cubes Cognos Dynamic Cubes Amit Desai Cognos Support Engineer Open Mic Facilitator Reena Nagrale Cognos Support Engineer Presenter Gracy Mendonca Cognos Support Engineer Technical Panel Member Shashwat Dhyani

More information

Oracle BI 12c: Build Repositories

Oracle BI 12c: Build Repositories Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle BI 12c: Build Repositories Duration: 5 Days What you will learn This Oracle BI 12c: Build Repositories training teaches you

More information

1Z Oracle Business Intelligence Foundation Suite 11g Essentials

1Z Oracle Business Intelligence Foundation Suite 11g Essentials 1Z0-591 - Oracle Business Intelligence Foundation Suite 11g Essentials 1.When a customer wants to get sales numbers by day, how is data stored in the Star Schema, if the data is loaded nightly? A. The

More information

Application-Tier In-Memory Analytics Best Practices and Use Cases

Application-Tier In-Memory Analytics Best Practices and Use Cases Application-Tier In-Memory Analytics Best Practices and Use Cases Susan Cheung Vice President Product Management Oracle, Server Technologies Oct 01, 2014 Guest Speaker: Kiran Tailor Senior Oracle DBA and

More information

This Oracle BI 11g R1: Build Repositories training is

This Oracle BI 11g R1: Build Repositories training is Oracle Uni Contact Us: 08 Oracle BI 11g R1: Build Repositories Durat5 Da What you will learn This Oracle BI 11g R1: Build Repositories training is University instructors will teach you step-by-step pro

More information

P6 EPPM System Administration Guide for On-Premises

P6 EPPM System Administration Guide for On-Premises P6 EPPM System Administration Guide for On-Premises Version 17 January 2018 Contents About This Guide... 7 Primavera P6 Administrator Setup Tasks... 9 What Has Changed... 9 Launching the Primavera P6

More information

Techno Expert Solutions An institute for specialized studies!

Techno Expert Solutions An institute for specialized studies! Course Content of Data Integration and ETL with Oracle Warehouse Builder: Part 1: Installing and Setting Up the Warehouse Builder Environment What Is Oracle Warehouse Builder? Basic Process Flow of Design

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

Data Integration and ETL with Oracle Warehouse Builder

Data Integration and ETL with Oracle Warehouse Builder Oracle University Contact Us: 1.800.529.0165 Data Integration and ETL with Oracle Warehouse Builder Duration: 5 Days What you will learn Participants learn to load data by executing the mappings or the

More information

APEX Times Ten Berichte. Tuning DB-Browser Datenmodellierung Schema Copy & Compare Data Grids. Extension Exchange.

APEX Times Ten Berichte. Tuning DB-Browser Datenmodellierung Schema Copy & Compare Data Grids. Extension Exchange. Oracle SQL Developer 3.0 Data Mining Debugging Code Snippets DBA-Navigator APEX Times Ten Berichte Unit Tests Migration Workbench Versionskontrolle Extension Exchange Tuning DB-Browser

More information

Coveo Platform 7.0. Yammer Connector Guide

Coveo Platform 7.0. Yammer Connector Guide Coveo Platform 7.0 Yammer Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market conditions,

More information

1Z0-630 Questions & Answers

1Z0-630 Questions & Answers 1Z0-630 Questions & Answers Number: 1Z0-630 Passing Score: 800 Time Limit: 120 min File Version: 38.2 http://www.gratisexam.com/ 1Z0-630 Questions & Answers Exam Name: Siebel7.7 Analytics Server Architect

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle BI 11g R1: Build Repositories Volume I - Student Guide D63514GC11 Edition 1.1 June 2011 D73309 Author Jim Sarokin Technical Contributors and Reviewers Marla Azriel Roger Bolsius Bob Ertl Alan Lee

More information

Unit

Unit Unit 4.1 DATAWAREHOUSING UNIT 4 CHAPTER 1 1. Extract, Transform, and Load Basics: ETL, Manual ETL processes, Staging,To stage or not to stage, Configuration of a staging area, Mappings and operators in

More information

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting

Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Lesson 3 Transcript: Part 1 of 2 - Tools & Scripting Slide 1: Cover Welcome to lesson 3 of the db2 on Campus lecture series. Today we're going to talk about tools and scripting, and this is part 1 of 2

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware User's Guide for Oracle Business Intelligence Data Warehouse Administration Console 11g Release 1 (11.1.1) E14849-06 November 2012 Explains how to use the Data Warehouse Administration

More information

Performance Optimization for Informatica Data Services ( Hotfix 3)

Performance Optimization for Informatica Data Services ( Hotfix 3) Performance Optimization for Informatica Data Services (9.5.0-9.6.1 Hotfix 3) 1993-2015 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

Analytics: Server Architect (Siebel 7.7)

Analytics: Server Architect (Siebel 7.7) Analytics: Server Architect (Siebel 7.7) Student Guide June 2005 Part # 10PO2-ASAS-07710 D44608GC10 Edition 1.0 D44917 Copyright 2005, 2006, Oracle. All rights reserved. Disclaimer This document contains

More information

A Case Study Building Financial Report and Dashboard Using OBIEE Part I

A Case Study Building Financial Report and Dashboard Using OBIEE Part I A Case Study Building Financial Report and Dashboard Using OBIEE Part I This is a 1 st document in the series of building financial reports and dashboard taking Essbase as Data Source. This document briefs

More information

Oracle WebLogic Server 12c: Administration I

Oracle WebLogic Server 12c: Administration I Oracle WebLogic Server 12c: Administration I Duration 5 Days What you will learn This Oracle WebLogic Server 12c: Administration I training teaches you how to install and configure Oracle WebLogic Server

More information

Informatica Power Center 10.1 Developer Training

Informatica Power Center 10.1 Developer Training Informatica Power Center 10.1 Developer Training Course Overview An introduction to Informatica Power Center 10.x which is comprised of a server and client workbench tools that Developers use to create,

More information

Learning R Series Session 5: Oracle R Enterprise 1.3 Integrating R Results and Images with OBIEE Dashboards Mark Hornick Oracle Advanced Analytics

Learning R Series Session 5: Oracle R Enterprise 1.3 Integrating R Results and Images with OBIEE Dashboards Mark Hornick Oracle Advanced Analytics Learning R Series Session 5: Oracle R Enterprise 1.3 Integrating R Results and Images with OBIEE Dashboards Mark Hornick Oracle Advanced Analytics Learning R Series 2012 Session Title

More information

Business Analytics in the Oracle 12.2 Database: Analytic Views. Event: BIWA 2017 Presenter: Dan Vlamis and Cathye Pendley Date: January 31, 2017

Business Analytics in the Oracle 12.2 Database: Analytic Views. Event: BIWA 2017 Presenter: Dan Vlamis and Cathye Pendley Date: January 31, 2017 Business Analytics in the Oracle 12.2 Database: Analytic Views Event: BIWA 2017 Presenter: Dan Vlamis and Cathye Pendley Date: January 31, 2017 Vlamis Software Solutions Vlamis Software founded in 1992

More information

Primavera Data Warehouse Installation and Configuration Guide

Primavera Data Warehouse Installation and Configuration Guide Data Warehouse Installation and Configuration Guide 15 R2 December 2015 Contents About the Primavera Data Warehouse... 7 About Primavera Analytics... 7 Primavera Data Warehouse and Primavera Analytics

More information

Liquidity Management OBIEE Setup Oracle Banking Liquidity Management Release [November] [2017]

Liquidity Management OBIEE Setup Oracle Banking Liquidity Management Release [November] [2017] Liquidity Management OBIEE Setup Oracle Banking Liquidity Management Release 14.0.0.0.0 [November] [2017] Table of Contents 1. Starting BI Server... 3 1.2 Upload OBIEE Reports... 4 2.REPORT CREATION...

More information

Oracle 1Z0-620 Exam Questions & Answers

Oracle 1Z0-620 Exam Questions & Answers Oracle 1Z0-620 Exam Questions & Answers Number: 1Z0-620 Passing Score: 800 Time Limit: 120 min File Version: 35.7 http://www.gratisexam.com/ Oracle 1Z0-620 Exam Questions & Answers Exam Name: Siebel7.7

More information

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide

SILWOOD TECHNOLOGY LTD. Safyr Metadata Discovery Software. Safyr Getting Started Guide SILWOOD TECHNOLOGY LTD Safyr Metadata Discovery Software Safyr Getting Started Guide S I L W O O D T E C H N O L O G Y L I M I T E D Safyr Getting Started Guide Safyr 7.1 This product is subject to the

More information

User Guide. Data Preparation R-1.0

User Guide. Data Preparation R-1.0 User Guide Data Preparation R-1.0 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

Copy Data From One Schema To Another In Sql Developer

Copy Data From One Schema To Another In Sql Developer Copy Data From One Schema To Another In Sql Developer The easiest way to copy an entire Oracle table (structure, contents, indexes, to copy a table from one schema to another, or from one database to another,.

More information

Logi Ad Hoc Reporting Management Console Usage Guide

Logi Ad Hoc Reporting Management Console Usage Guide Logi Ad Hoc Reporting Management Console Usage Guide Version 12.1 July 2016 Page 2 Contents Introduction... 5 Target Audience... 5 System Requirements... 6 Components... 6 Supported Reporting Databases...

More information

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training

OBIEE. Oracle Business Intelligence Enterprise Edition. Rensselaer Business Intelligence Finance Author Training OBIEE Oracle Business Intelligence Enterprise Edition Rensselaer Business Intelligence Finance Author Training TABLE OF CONTENTS INTRODUCTION... 1 USER INTERFACE... 1 HOW TO LAUNCH OBIEE... 1 TERMINOLOGY...

More information

Monitoring and Operating Cisco Prime Service Catalog Reports

Monitoring and Operating Cisco Prime Service Catalog Reports Monitoring and Operating Cisco Prime Service Catalog Reports This chapter contains the following topics: Configuring Cognos Memory Usage, page 1 Refreshing the Standard Reports Package, page 2 Refreshing

More information

Data Warehouse Installation and Configuration Guide

Data Warehouse Installation and Configuration Guide Data Warehouse Installation and Configuration Guide 16 R2 December 2016 Contents About the Primavera Data Warehouse... 5 About Primavera Analytics... 5 Primavera Data Warehouse and Primavera Analytics

More information

DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER

DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER DEPLOYMENT GUIDE DEPLOYING F5 WITH ORACLE ACCESS MANAGER Table of Contents Table of Contents Introducing the F5 and Oracle Access Manager configuration Prerequisites and configuration notes... 1 Configuration

More information

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A

Kintana Object*Migrator System Administration Guide. Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator System Administration Guide Version 5.1 Publication Number: OMSysAdmin-1203A Kintana Object*Migrator, Version 5.1 This manual, and the accompanying software and other documentation,

More information

Hyperion Interactive Reporting Reports & Dashboards Essentials

Hyperion Interactive Reporting Reports & Dashboards Essentials Oracle University Contact Us: +27 (0)11 319-4111 Hyperion Interactive Reporting 11.1.1 Reports & Dashboards Essentials Duration: 5 Days What you will learn The first part of this course focuses on two

More information

Using Standard Generation Rules to Generate Test Data

Using Standard Generation Rules to Generate Test Data Using Standard Generation Rules to Generate Test Data 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording

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

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

PASS4TEST. IT Certification Guaranteed, The Easy Way!   We offer free update service for one year PASS4TEST IT Certification Guaranteed, The Easy Way! \ http://www.pass4test.com We offer free update service for one year Exam : 1Z0-630 Title : Siebel7.7 Analytics Server Architect Professional Core Exam

More information

<Insert Picture Here> Looking at Performance - What s new in MySQL Workbench 6.2

<Insert Picture Here> Looking at Performance - What s new in MySQL Workbench 6.2 Looking at Performance - What s new in MySQL Workbench 6.2 Mario Beck MySQL Sales Consulting Manager EMEA The following is intended to outline our general product direction. It is

More information

Analytics Installation and Configuration Guide

Analytics Installation and Configuration Guide Analytics Installation and Configuration Guide 16 R2 October 2016 Contents About This Guide... 5 About Primavera Analytics... 5 About the Primavera Data Warehouse... 7 Primavera Data Warehouse and Primavera

More information

P6 EPPM BI Publisher Configuration Guide

P6 EPPM BI Publisher Configuration Guide P6 EPPM BI Publisher Configuration Guide 16 R2 September 2016 Contents About Configuring BI Publisher... 5 Getting Started with BI Publisher Reports... 5 Configuring P6 for Reporting... 7 Configuring

More information

ETL Best Practices and Techniques. Marc Beacom, Managing Partner, Datalere

ETL Best Practices and Techniques. Marc Beacom, Managing Partner, Datalere ETL Best Practices and Techniques Marc Beacom, Managing Partner, Datalere Thank you Sponsors Experience 10 years DW/BI Consultant 20 Years overall experience Marc Beacom Managing Partner, Datalere Current

More information

SQL Server Analysis Services

SQL Server Analysis Services DataBase and Data Mining Group of DataBase and Data Mining Group of Database and data mining group, SQL Server 2005 Analysis Services SQL Server 2005 Analysis Services - 1 Analysis Services Database and

More information

Oracle 1Z0-640 Exam Questions & Answers

Oracle 1Z0-640 Exam Questions & Answers Oracle 1Z0-640 Exam Questions & Answers Number: 1z0-640 Passing Score: 800 Time Limit: 120 min File Version: 28.8 http://www.gratisexam.com/ Oracle 1Z0-640 Exam Questions & Answers Exam Name: Siebel7.7

More information

Chapter 2 WEBLOGIC SERVER DOMAINS. SYS-ED/ Computer Education Techniques, Inc.

Chapter 2 WEBLOGIC SERVER DOMAINS. SYS-ED/ Computer Education Techniques, Inc. Chapter 2 WEBLOGIC SERVER DOMAINS SYS-ED/ Computer Education Techniques, Inc. Objectives You will learn: Domain - concept and implementation. Content of a domain. Common domain types. Production versus

More information

Perceptive Content. Release Notes. Version: 7.0.x

Perceptive Content. Release Notes. Version: 7.0.x Perceptive Content Release Notes Version: 7.0.x Written by: Product Knowledge, R&D Date: February 2016 2015-2016 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

MySQL 8.0: Atomic DDLs Implementation and Impact

MySQL 8.0: Atomic DDLs Implementation and Impact MySQL 8.0: Atomic DDLs Implementation and Impact Ståle Deraas, Senior Development Manager Oracle, MySQL 26 Sept 2017 Copyright 2017, Oracle and/or its its affiliates. All All rights reserved. Safe Harbor

More information

Braindumps.1z QA

Braindumps.1z QA Braindumps.1z0-591.120.QA Number: 1z0-591 Passing Score: 800 Time Limit: 120 min File Version: 4.4 http://www.gratisexam.com/ 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials I found

More information

1z0-591.exam.70q.

1z0-591.exam.70q. 1z0-591.exam.70q Number: 1z0-591 Passing Score: 800 Time Limit: 120 min 1z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials Exam A QUESTION 1 Query limits tab can be accessed through.

More information

Question: 1 What are some of the data-related challenges that create difficulties in making business decisions? Choose three.

Question: 1 What are some of the data-related challenges that create difficulties in making business decisions? Choose three. Question: 1 What are some of the data-related challenges that create difficulties in making business decisions? Choose three. A. Too much irrelevant data for the job role B. A static reporting tool C.

More information

Website: Contact: / Classroom Corporate Online Informatica Syllabus

Website:  Contact: / Classroom Corporate Online Informatica Syllabus Designer Guide: Using the Designer o Configuring Designer Options o Using Toolbars o Navigating the Workspace o Designer Tasks o Viewing Mapplet and Mapplet Reports Working with Sources o Working with

More information

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry.

FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE VERSION 9. Setup Guide. This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION VERSION 9 Setup Guide This guide explains how to install and configure the Fusion Registry. FUSION REGISTRY COMMUNITY EDITION SETUP GUIDE Fusion Registry: 9.2.x Document

More information

barge In option 127 bigdecimal variables 16 biginteger variables 16 boolean variables 15 business hours step 100

barge In option 127 bigdecimal variables 16 biginteger variables 16 boolean variables 15 business hours step 100 A aa_sample1.aef file 25 aa script 1 acceptable digits, specifying 137 accept step 67 annotate step 99 attach to fax step 95 auto attendant sample script 1 B barge In option 127 bigdecimal variables 16

More information

Oracle Financial Services Economic Capital Advanced Installation Guide

Oracle Financial Services Economic Capital Advanced Installation Guide An Oracle Technical White Paper December 2013 Oracle Financial Services Economic Capital Advanced 1.1.1.1.0 Installation Guide Introduction Oracle Financial Services (OFS) Economic Capital Advanced Release

More information

DBPLUS Performance Monitor for Oracle

DBPLUS Performance Monitor for Oracle DBPLUS Performance Monitor for Oracle User s Manual February 2016 UM-ORA-EN-R01 Table of contents 1 Introduction... 4 1.1 DBPLUS Technical Support... 5 1.2 System architecture... 5 1.3 System requirements...

More information

User Guide. Data Preparation R-1.1

User Guide. Data Preparation R-1.1 User Guide Data Preparation R-1.1 Contents 1. About this Guide... 4 1.1. Document History... 4 1.2. Overview... 4 1.3. Target Audience... 4 2. Introduction... 4 2.1. Introducing the Big Data BizViz Data

More information

SAS Visual Analytics Environment Stood Up? Check! Data Automatically Loaded and Refreshed? Not Quite

SAS Visual Analytics Environment Stood Up? Check! Data Automatically Loaded and Refreshed? Not Quite Paper SAS1952-2015 SAS Visual Analytics Environment Stood Up? Check! Data Automatically Loaded and Refreshed? Not Quite Jason Shoffner, SAS Institute Inc., Cary, NC ABSTRACT Once you have a SAS Visual

More information

Top 24 Obiee Interview Questions & Answers

Top 24 Obiee Interview Questions & Answers Top 24 Obiee Interview Questions & Answers 1) Mention what is Obiee? Obiee stands for Oracle Business Intelligence Enterprise Edition (OBIEE). It is a business intelligence system for the enterprise that

More information

Clarity Technical Know-How

Clarity Technical Know-How Clarity Technical Know-How Volume One Michael Hoefer VP & Chief Architect, Clarity PPM Terms of This Presentation This presentation was based on current information and resource allocations as of October

More information

Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS)

Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS) Hypertext Transfer Protocol over Secure Sockets Layer (HTTPS) This chapter provides information about Hypertext Transfer Protocol over Secure Sockets Layer. HTTPS, page 1 HTTPS for Cisco Unified IP Phone

More information

Quality Gates User guide

Quality Gates User guide Quality Gates 3.3.5 User guide 06/2013 1 Table of Content 1 - Introduction... 4 2 - Navigation... 5 2.1 Navigation tool bar... 5 2.2 Navigation tree... 5 2.3 Folder Tree... 6 2.4 Test history... 7 3 -

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

Cisco Unified Serviceability

Cisco Unified Serviceability Cisco Unified Serviceability Introduction, page 1 Installation, page 5 Introduction This document uses the following abbreviations to identify administration differences for these Cisco products: Unified

More information

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6

Teiid - Scalable Information Integration. Teiid Caching Guide 7.6 Teiid - Scalable Information Integration 1 Teiid Caching Guide 7.6 1. Overview... 1 2. Results Caching... 3 2.1. Support Summary... 3 2.2. User Interaction... 3 2.2.1. User Query Cache... 3 2.2.2. Procedure

More information

IBM Cognos Business Intelligence New Features Part II

IBM Cognos Business Intelligence New Features Part II IBM Cognos Business Intelligence 10.2.2 New Features Part II 18-Feb-15 IBM Analytics Open MIC Team Chakravarthi Mannava Facilitator & Technical Panel Member Subhash Kothari Presenter 2 Agenda Framework

More information

Product Documentation. ER/Studio Portal. User Guide. Version Published February 21, 2012

Product Documentation. ER/Studio Portal. User Guide. Version Published February 21, 2012 Product Documentation ER/Studio Portal User Guide Version 1.6.3 Published February 21, 2012 2012 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other Embarcadero

More information

Product Documentation. ER/Studio Portal. User Guide 2nd Edition. Version 2.0 Published January 31, 2013

Product Documentation. ER/Studio Portal. User Guide 2nd Edition. Version 2.0 Published January 31, 2013 Product Documentation ER/Studio Portal User Guide 2nd Edition Version 2.0 Published January 31, 2013 2013 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies logos, and all other Embarcadero

More information

Perceptive Content. Release Notes. Version: 7.0.x

Perceptive Content. Release Notes. Version: 7.0.x Perceptive Content Release Notes Version: 7.0.x Written by: Product Knowledge, R&D Date: May 2018 2015-2017 Lexmark International Technology, S.A. All rights reserved. Lexmark is a trademark of Lexmark

More information

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Custom Plug-ins March 2018 215-12932_C0 doccomments@netapp.com Table of Contents 3 Contents Deciding on whether to read the SnapCenter Data Protection

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 11g Optimizer Statistics Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc.

Oracle 11g Optimizer Statistics   Inderpal S. Johal. Inderpal S. Johal, Data Softech Inc. ORACLE 11G DATABASE STATISTICS Inderpal S. Johal, Data Softech Inc. OVERVIEW Oracle 10g have made lots of significant change so as to provide good performance to Oracle database. The important changes

More information

WhatsConfigured for WhatsUp Gold 2016 User Guide

WhatsConfigured for WhatsUp Gold 2016 User Guide WhatsConfigured for WhatsUp Gold 2016 User Guide Contents Welcome to WhatsConfigured 1 What is WhatsConfigured? 1 Finding more information and updates 1 Sending feedback 2 Deploying WhatsConfigured 3 STEP

More information

How Do I Inspect Error Logs in Warehouse Builder?

How Do I Inspect Error Logs in Warehouse Builder? 10 How Do I Inspect Error Logs in Warehouse Builder? Scenario While working with Warehouse Builder, the designers need to access log files and check on different types of errors. This case study outlines

More information

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I D64974GC20 Edition 2.0 September 2012 D78954 Author Richard Green Technical Contributors and Reviewers Alex Kotopoulis

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

Implementing Data Masking and Data Subset with Sequential or VSAM Sources

Implementing Data Masking and Data Subset with Sequential or VSAM Sources Implementing Data Masking and Data Subset with Sequential or VSAM Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic,

More information

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL

TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL TUTORIAL FOR IMPORTING OTTAWA FIRE HYDRANT PARKING VIOLATION DATA INTO MYSQL We have spent the first part of the course learning Excel: importing files, cleaning, sorting, filtering, pivot tables and exporting

More information

<Insert Picture Here> Value of TimesTen Oracle TimesTen Product Overview

<Insert Picture Here> Value of TimesTen Oracle TimesTen Product Overview Value of TimesTen Oracle TimesTen Product Overview Shig Hiura Sales Consultant, Oracle Embedded Global Business Unit When You Think Database SQL RDBMS Results RDBMS + client/server

More information

Configuring SAP Targets and Runtime Users

Configuring SAP Targets and Runtime Users CHAPTER 4 Before you can create or run processes in your SAP environment, you must create the targets on which the processes will run. Targets are used to define specific environments where activities,

More information

GWNMS NeDi. About NeDi. Configuring the NeDi Package. Managing User Access. Managing User Accounts

GWNMS NeDi. About NeDi. Configuring the NeDi Package. Managing User Access. Managing User Accounts GWNMS NeDi This section reviews the GroundWork Monitor NMS NeDi. About NeDi NeDi is an open source toolkit for managing network infrastructure devices such as switches and routers, and is integrated into

More information

SQL Server 2005 Integration Services

SQL Server 2005 Integration Services Integration Services project An Integration Services project allows managing all ETL processes It is based on Business Intelligence projects of type Integration Services Open Visual Studio and create a

More information

Design Studio Data Flow performance optimization

Design Studio Data Flow performance optimization Design Studio Data Flow performance optimization Overview Plan sources Plan sinks Plan sorts Example New Features Summary Exercises Introduction Plan sources Plan sinks Plan sorts Example New Features

More information

Hypertext Transfer Protocol Over Secure Sockets Layer (HTTPS)

Hypertext Transfer Protocol Over Secure Sockets Layer (HTTPS) Hypertext Transfer Protocol Over Secure Sockets Layer (HTTPS) This chapter provides information about Hypertext Transfer Protocol over Secure Sockets Layer. HTTPS, page 1 HTTPS for Cisco Unified IP Phone

More information

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide

Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower 7.2: Configuration Guide Policy Manager for IBM WebSphere DataPower Configuration Guide SOAPMDP_Config_7.2.0 Copyright Copyright 2015 SOA Software, Inc. All rights

More information

1. Attempt any two of the following: 10 a. State and justify the characteristics of a Data Warehouse with suitable examples.

1. Attempt any two of the following: 10 a. State and justify the characteristics of a Data Warehouse with suitable examples. Instructions to the Examiners: 1. May the Examiners not look for exact words from the text book in the Answers. 2. May any valid example be accepted - example may or may not be from the text book 1. Attempt

More information

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

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile D2K 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

SAS Enterprise Case Management 2.2. Administrator s Guide

SAS Enterprise Case Management 2.2. Administrator s Guide SAS Enterprise Case Management 2.2 Administrator s Guide The correct bibliographic citation for this manual is as follows: SAS Institute, Inc. 2010. SAS Enterprise Case Management 2.2: Administrator's

More information

Oracle Learn Cloud. What s New in Release 15B

Oracle Learn Cloud. What s New in Release 15B Oracle Learn Cloud What s New in Release 15B 10 July 2015 TABLE OF CONTENTS OVERVIEW... 3 RELEASE FEATURE SUMMARY... 3 BI REPORTING BETA CUSTOM REPORTING CAPABILITIES... 5 Terminology... 5 New User Permission...

More information

My Query Builder Function

My Query Builder Function My Query Builder Function The My Query Builder function is used to build custom SQL queries for reporting information out of the TEAMS system. Query results can be exported to a comma-separated value file,

More information

Oracle Sales Intelligence

Oracle Sales Intelligence Oracle Sales Intelligence Implementation Guide Release 11i December 2001 Part No. A96134-01 Implementing Oracle Sales Intelligence Use the following procedures to implement Oracle Sales Intelligence: Granting

More information

Oracle Rdb Extension for OEM 9i

Oracle Rdb Extension for OEM 9i Oracle Rdb Extension for OEM 9i Release V7.1.0.0 Oracle Rdb Extension for OEM 9i User Guide Release 7.1.0.0 for Oracle Enterprise Managers on Windows NT, Windows 2000, Sun Solaris OS (SPARC) for Oracle

More information

Oracle 1Z0-591 Exam Questions and Answers (PDF) Oracle 1Z0-591 Exam Questions 1Z0-591 BrainDumps

Oracle 1Z0-591 Exam Questions and Answers (PDF) Oracle 1Z0-591 Exam Questions 1Z0-591 BrainDumps Oracle 1Z0-591 Dumps with Valid 1Z0-591 Exam Questions PDF [2018] The Oracle 1Z0-591 Oracle Business Intelligence Foundation Suite 11g Essentials exam is an ultimate source for professionals to retain

More information

Call: SAS BI Course Content:35-40hours

Call: SAS BI Course Content:35-40hours SAS BI Course Content:35-40hours Course Outline SAS Data Integration Studio 4.2 Introduction * to SAS DIS Studio Features of SAS DIS Studio Tasks performed by SAS DIS Studio Navigation to SAS DIS Studio

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information