Oracle Data Integrator for Big Data. Alex Kotopoulis Senior Principal Product Manager

Size: px
Start display at page:

Download "Oracle Data Integrator for Big Data. Alex Kotopoulis Senior Principal Product Manager"

Transcription

1 Oracle Data Integrator for Big Data Alex Kotopoulis Senior Principal Product Manager

2 Hands on Lab - Oracle Data Integrator for Big Data Abstract: This lab will highlight to Developers, DBAs and Architects some of the best practices for implementing a Big Data implementation of a Data Reservoir using E-LT techniques to improve performance and reduce data integration costs using Oracle Data Integrator. In this lab, participants will walk through the steps that are needed to load and transform sources into a Hadoop cluster, transform it, and load it into a relational target. The following lessons will walk us through various steps that are needed to create the Oracle Data Integrator mappings, packages and Oracle GoldenGate processes required to load and transform the data. HANDS ON LAB - ORACLE DATA INTEGRATOR FOR BIG DATA... 2 ARCHITECTURE OVERVIEW... 3 OVERVIEW... 3 Time to Complete... 3 Prerequisites... 3 TASK 0: PREPARATION STEPS... 4 TASK 1: REVIEW TOPOLOGY AND MODEL SETUP... 5 TASK 2: LOAD HIVE TABLES USING SQOOP... 8 TASK 3: TRANSFORMING DATA WITHIN HIVE TASK 4: LOAD ORACLE FROM HIVE TABLES USING ORACLE LOADER FOR HADOOP TASK 5: CREATING A NEW ODI PACKAGE TO EXECUTE END-TO-END LOAD TASK 6: REPLICATING NEW RECORDS TO HIVE USING ORACLE GOLDENGATE SUMMARY Last Updated: 29-Aug-14 Page 2 of 42

3 Architecture Overview This Hands-on lab is based on a fictional movie streaming company that provides online access to movie media. The goal of this lab is to load customer activity data that includes movie rating actions as well as a movie database sourced from a MySQL DB into Hadoop Hive, aggregate and join average ratings per movie, and load this data into an Oracle DB target. Flume Log-stream Logs MySQL Movie HDFS file Activity Task 2: Sqoop Map Task 6: OGG Load Hive ext. table Activity Hive movie Task 3: Hive Map Avg. Movie Ratings Task 1: Topology and Models Hive movie_rating Task 5: ODI Package Task 4: OLH Map Oracle MOVIE_RATING We are distributing the work into 6 tasks: 1. Review the prepared ODI topology and models connecting to MySQL, Hadoop, and Oracle DB. 2. Create a mapping that uses Apache Sqoop to load movie data from MySQL to Hive tables 3. Create a mapping that joins data from customer activity with movie data and aggregates average movie ratings into a target Hive table. 4. Load the movie rating information from Hive to Oracle DB using Oracle Loader for Hadoop. 5. Create a package workflow that orchestrates the mappings of tasks 2, 3,and 4 in one end-to-end load. 6. Create Oracle GoldenGate processes that will detect inserts in the MySQL movie database and add them to the Hive movie table in realtime. Overview Time to Complete Prerequisites Perform all 6 tasks 60 Minutes Before you begin this tutorial, you should Have a general understanding of RDBMS and Hadoop concepts. Have a general understanding of ETL concepts. Last Updated: 29-Aug-14 Page 3 of 42

4 Task 0: Preparation Steps In these steps you will clean and setup the environment for this exercise 1. Double-click Start/Stop Services on the desktop 2. In the Start/Stop Services window, scroll down with arrow keys to ORCL Oracle Database 12c and select it. Press OK. Note: The ORCL option is initially not visible, you need to scroll down. Last Updated: 29-Aug-14 Page 4 of 42

5 Task 1: Review Topology and Model Setup The connectivity information has already been setup for this hand on lab. This information is setup within the Topology Manager of ODI. The next steps will walk you through how to review this information. 1. Start ODI Studio: On the toolbar single-click (No double-click!) the ODI Studio icon 2. Go to the Topology Navigator and press Connect to Repository 3. In the ODI Login dialog press OK. 4. Within the Physical Architecture accordion on the left, expand the Technologies folder Note: For this HOL the setting Hide Unused Technologies has been set to hide all technologies without a configured dataserver. Last Updated: 29-Aug-14 Page 5 of 42

6 5. For this HOL the connectivity information has already been setup. Connectivity information is setup for Hive, MySQL and Oracle sources and targets. Please expand these technologies to see the configured dataservers. Info: A technology is a type of datasource that can be used by ODI as source, target, or other connection. A data server is an individual server of a given technology, for example a database server. A data server can have multiple schemas. ODI uses a concept of logical and physical schemas to allow execution of the same mapping on different environments, for example on development, QA, and production environments. 6. Double-click on the Hive data server ( ) to review settings Last Updated: 29-Aug-14 Page 6 of 42

7 7. Click on the JDBC tab on the left to view Hive connection information. 8. Switch to the Designer navigator and open the Models accordion. Expand all models. Info: A model is a set of metadata definitions regarding a source such as a database schema or a set of files. A model can contain multiple data stores, which follow the relational concept of columns and rows and can be database tables, structured files, or XML elements within an XML document. Last Updated: 29-Aug-14 Page 7 of 42

8 Task 2: Load Hive Tables using Sqoop In this task we use Apache Sqoop to load data from an external DB into Hive tables. Sqoop starts parallel Map-Reduce processes in Hadoop to load chunks of the DB data with high performance. ODI can generate Sqoop code transparently from a Mapping by selecting the correct Knowledge module. Flume Log-stream Logs MySQL Movie HDFS file Activity Task 2: Sqoop Map Task 6: OGG Load Hive ext. table Activity Hive movie Task 3: Hive Map Avg. Movie Ratings Task 1: Topology and Models Hive movie_rating Task 5: ODI Package Task 4: OLH Map Oracle MOVIE_RATING 1. The first mapping to be created will load the MySQL Movie table into the Hive movie table To create a new mapping, open the Project accordion within the Designer navigator: Last Updated: 29-Aug-14 Page 8 of 42

9 2. Expand the Big Data HOL > First Folder folder 3. Right click on Mappings and click New Mapping Info: A mapping is a data flow to move and transform data from sources into targets. It contains declarative and graphical rules about data joining and transformation. 9. In the New Mapping dialog change the name to A - Sqoop Movie Load and press OK. Last Updated: 29-Aug-14 Page 9 of 42

10 4. For this mapping we will load the table MOVIE from model MySQL to the table movie within the model HiveMovie. To view the models open the Models accordion 5. Drag the datastore MOVIE from model MySQL as a source and the datastore movie from Model HiveMovie as a target onto the mapping diagram panel. Last Updated: 29-Aug-14 Page 10 of 42

11 6. Drag from the output port of the source MOVIE to the input port of the target movie. 7. Click OK on the Attribute Matching dialog. ODI will map all same-name fields from source to target. 8. The logical flow has now been setup. To set physical implementation click on the Physical tab of the editor. Last Updated: 29-Aug-14 Page 11 of 42

12 9. The physical tab shows the actual systems involved in the transformation, in this case the MySQL source and the Hive target. In the physical tab users can choose the Load Knowledge Module (LKM) that controls data movement between systems as well as the Integration Knowledge Module (IKM) that controls transformation of data. Select the access point MOVIE_AP to select an LKM. Note: The KMs that will be used have already been imported into the project. Info: A knowledge module (KM) is a template that represents best practices to perform an action in an interface, such as loading from/to a certain technology (Load knowledge module or LKM), integrating data into the target (Integration Knowledge Module or IKM), checking data constraints (Check Knowledge Module or CKM), and others. Knowledge modules can be customized by the user. Last Updated: 29-Aug-14 Page 12 of 42

13 10. Go to the Properties Editor underneath the Mapping editor. There is a section Loading Knowledge Module; you might have to scroll down to see it. Open this section and pick the LKM SQL Multi-Connect.GLOBAL. This LKM allows the IKM to perform loading activities. Note: If the Property Editor is not visible in the UI, go to the menu Window > Properties to open it. Depending on the available size of the Property Editor, the sections within the editor (such as General ) might be shown as titles or tabs on the left. 11. Select the target datastore MOVIE. Last Updated: 29-Aug-14 Page 13 of 42

14 12. In the Property Editor open section Integration Knowledge Module and pick IKM SQL to Hive-HBase-File (SQOOP).GLOBAL. Note: If this IKM is not visible in the list, make sure that you performed the previous tutorial step and chose the LKM SQL Multi-Connect. 13. Review the list of IKM Options for this KM. These options are used to configure and tune the Sqoop process to load data. Change the option TRUNCATE to true. Last Updated: 29-Aug-14 Page 14 of 42

15 14. The mapping is now complete. Press the Run button on the taskbar above the mapping editor. When asked to save your changes, press Yes. 15. Click OK for the run dialog. We will use all defaults and run this mapping on the local agent that is embedded in the ODI Studio UI. After a moment a Session started dialog will appear, press OK there as well. 16. To review execution go to the Operator navigator and expand the All Executions node to see the current execution. The execution might not have finished, then it will show the icon for an ongoing task. You can refresh the view by pressing to refresh once or to refresh automatically every 5 seconds. Last Updated: 29-Aug-14 Page 15 of 42

16 17. Once the load is complete, the warning icon will be displayed. A warning icon is ok for this run and still means the load was successful. You can expand the Execution tree to see the individual tasks of the execution. 18. Go to Designer navigator and Models and right-click HiveMovie.movie. Select View Data from the menu to see the loaded rows. Last Updated: 29-Aug-14 Page 16 of 42

17 19. A Data editor appears with all rows of the movie table in Hive. Last Updated: 29-Aug-14 Page 17 of 42

18 Task 3: Transforming Data within Hive In this task we will design a transformation in an ODI mapping that will be executed in Hive. Please note that with ODI you can create logical mappings declaratively without considering any implementation details; those can be added later in the physical design. Flume Log-stream Logs MySQL Movie HDFS file Activity Task 2: Sqoop Map Task 6: OGG Load Hive ext. table Activity Hive movie Task 3: Hive Map Avg. Movie Ratings Task 1: Topology and Models Hive movie_rating Task 5: ODI Package Task 4: OLH Map Oracle MOVIE_RATING For this mapping we will use two Hive source tables movie and movieapp_log_avro as sources and the Hive table movie_rating as target. 1. To create a new mapping, open the Project accordion within the Designer navigator, expand the Big Data HOL > First Folder folder, and right-click on Mappings and click New Mapping Last Updated: 29-Aug-14 Page 18 of 42

19 2. In the New Mapping dialog change the name to B - Hive Calc Ratings and press OK. 3. Open the Models accordion and expand the model HiveMovie. Drag the datastores movie and movieapp_log_avro as sources and movie_rating as target into the new mapping. 4. First we would like to filter the movie activities to only include rating activities (ID 1). For this drag a Filter from the Component Palette behind the movieapp_log_avro source. Last Updated: 29-Aug-14 Page 19 of 42

20 5. Drag the attribute activity from movieapp_log_avro onto the FILTER component. This will connect the components and use the attribute activity in the filter condition. 6. Select the FILTER component and go to the Property Editor. Expand the section Condition and complete the condition to movieapp_log_avro.activity = 1 Last Updated: 29-Aug-14 Page 20 of 42

21 7. We now want to aggregate all activities based on the movie watched and calculate an average rating. Drag an Aggregate component from the palette onto the mapping. 8. Drag and drop the attributes movieid and rating from movieapp_log_avro directly onto AGGREGATE in order to map them. They are automatically routed through the filter. Last Updated: 29-Aug-14 Page 21 of 42

22 9. Select the attribute AGGREGATE.rating and go to the Property Editor. Expand the section Target and complete the expression to AVG (movieapp_log_avro.rating). Note: The Expression Editor ( icon right of Expression field) can be used to edit expressions and provides lists of available functions. 10. Now we would like to join the aggregated ratings with the movie table to obtain enriched movie information. Drag a Join component from the Component Palette to the mapping. Last Updated: 29-Aug-14 Page 22 of 42

23 11. Drop the attributes movie.movie_id and AGGREGATE.movieid onto the JOIN component. These two attributes will be used to create an equijoin condition. Note: The join condition can also be changed in the Property Editor 12. Highlight the JOIN component and go to the property editor. Expand the Condition section and check the property Generate ANSI Syntax Last Updated: 29-Aug-14 Page 23 of 42

24 13. Drag from the output port of JOIN to the input port of the target movie_rating. 14. Click OK on the Attribute Matching dialog. ODI will map all same-name fields from source to target. 15. Drag the remaining unmapped attribute AGGREGATE.rating over to movie_rating.avg_rating. Last Updated: 29-Aug-14 Page 24 of 42

25 16. The logical flow has now been setup. Compare the diagram below with your actual mapping to spot any differences. To set physical implementation click on the Physical tab of the editor. 17. The physical tab shows that in this mapping everything is performed in the same system, the Hive server. Because of this no LKM is necessary. Select the target MOVIE_RATING to select an IKM. Last Updated: 29-Aug-14 Page 25 of 42

26 18. Go to the Property Editor and expand the section Integration Knowledge Module. The correct IKM Hive Control Append.GLOBAL has already been selected by default, no change is necessary. In the IKM options change TRUNCATE to True, leave all other options to default. 19. The mapping is now complete. Press the Run button on the taskbar above the mapping editor. When asked to save your changes, press Yes. 20. Click OK for the run dialog. After a moment a Session started dialog will appear, press OK there as well. 21. To review execution go to the Operator navigator and expand the All Executions node to see the current execution. Last Updated: 29-Aug-14 Page 26 of 42

27 22. Once the load is complete, expand the Execution tree to see the individual tasks of the execution. Double-click on Task 50 Insert (new) rows to see details of the execution 23. In the Session Task Editor that opens click on the Code tab on the left. The generated SQL code will be shown. The code is generated from the mapping logic and contains a WHERE condition, JOIN and GROUP BY statement that is directly related to the mapping components. Last Updated: 29-Aug-14 Page 27 of 42

28 24. Go to Designer navigator and Models accordion and right-click HiveMovie.movie_rating. Select View Data from the menu to see the loaded rows. 25. A data view editor appears with all rows of the movie_rating table in Hive. Last Updated: 29-Aug-14 Page 28 of 42

29 Task 4: Load Oracle from Hive Tables using Oracle Loader for Hadoop In this task we load the results of the prior Hive transformation from the resulting Hive table into the Oracle DB data warehouse. We are using the Oracle Loader for Hadoop (OLH) build data loader which uses mechanisms specifically optimized for Oracle DB. Flume Log-stream Logs MySQL Movie HDFS file Activity Task 2: Sqoop Map Task 6: OGG Load Hive ext. table Activity Hive movie Task 3: Hive Map Avg. Movie Ratings Task 1: Topology and Models Hive movie_rating Task 5: ODI Package Task 4: OLH Map Oracle MOVIE_RATING 1. To create a new mapping, open the Project accordion within the Designer navigator, expand the Big Data HOL > First Folder folder, and right-click on Mappings and click New Mapping Last Updated: 29-Aug-14 Page 29 of 42

30 2. In the New Mapping dialog change the name to C - OLH Load Oracle and press OK. 3. Open the Models accordion and expand the model HiveMovie. Drag the datastore movie_rating as source into the new mapping. Then open model OracleMovie and drag in the datastore MOVIE_RATING_ODI as a target. 4. Drag from the output port of the source movie_rating to the input port of the target MOVIE_RATING_ODI. Last Updated: 29-Aug-14 Page 30 of 42

31 5. Click OK on the Attribute Matching dialog. ODI will map all same-name fields from source to target. 6. The logical flow has now been setup. To set physical implementation click on the Physical tab of the editor. Last Updated: 29-Aug-14 Page 31 of 42

32 7. Select the access point MOVIE_RATING_AP (only MOVIE_RA is visible) to select an LKM. Go to the Property Editor and choose LKM SQL Multi-Connect.GLOBAL because the IKM will perform the load. 8. Select the target datastore MOVIE_RATING_ODI, then go to the Property Editor to select an IKM. Choose IKM File-Hive to Oracle (OLH-OSCH).GLOBAL. Note: If this IKM is not visible in the list, make sure that you performed the previous tutorial step and chose the LKM SQL Multi-Connect. Last Updated: 29-Aug-14 Page 32 of 42

33 9. Review the list of IKM options for this KM. These options are used to configure and tune the OLH or OSCH process to load data. We will use the default setting of OLH through JDBC. Change the option TRUNCATE to true. 10. The mapping is now complete. Press the Run button on the taskbar above the mapping editor. When asked to save your changes, press Yes. 11. Click OK for the run dialog. We will use all defaults and run this mapping on the local agent that is embedded in the ODI Studio UI. After a moment a Session started dialog will appear, press OK there as well. Last Updated: 29-Aug-14 Page 33 of 42

34 12. To review execution go to the Operator navigator and expand the All Executions node to see the current execution. Wait until the execution is finished, check by refreshing the view. 13. Go to Designer navigator and Models and right-click OracleMovie.MOVIE_RATING_ODI. Select View Data from the menu to see the loaded rows. Last Updated: 29-Aug-14 Page 34 of 42

35 14. A data view editor appears with all rows of the table MOVIE_RATING_ODI in Oracle. Last Updated: 29-Aug-14 Page 35 of 42

36 Task 5: Creating a new ODI Package to execute end-to-end load. Now that the mappings have been created we can create a package within ODI that will execute all of the interfaces in order. Flume Log-stream Logs MySQL Movie HDFS file Activity Task 2: Sqoop Map Task 6: OGG Load Hive ext. table Activity Hive movie Task 3: Hive Map Avg. Movie Ratings Task 1: Topology and Models Hive movie_rating Task 5: ODI Package Task 4: OLH Map Oracle MOVIE_RATING 1. To create a new package, open the Designer navigator and Project accordion on the Big Data HOL / First Folder, then right-click on Packages and select New Package. Info: A package is a task flow to orchestrate execution of multiple mappings and define additional logic, such as conditional execution and actions such as sending s, calling web services, uploads/downloads, file manipulation, event handling, and others. Last Updated: 29-Aug-14 Page 36 of 42

37 2. Name the package Big Data Load and press OK. 3. Click the Diagram tab Drag and Drop the interfaces from the left onto the diagram panel, starting with the mapping A - Sqoop Movie Load. Notice the green arrow on this mapping which means it is the first step. 4. Drag the mappings B Hive Calc Ratings and C OLH Load Oracle onto the panel 5. Click the OK arrow toolbar button to select the order of precedence. Last Updated: 29-Aug-14 Page 37 of 42

38 6. Drag and drop from the A - Sqoop Movie Load to the B Hive Calc Ratings to set the link. Then drag and drop from B Hive Calc Ratings to C OLH Load Oracle. Note: If you need to rearrange steps, switch back to the select mode ( ) 7. The package is now setup and can be executed. To execute the interface click the Execute ( ) button in the toolbar. When prompted to save click Yes. 8. Click OK in the Run dialog. After a moment a Session started dialog will appear, press OK there as well. 9. To review execution, go to the Operator navigator and open the latest session execution. The 3 steps are separately shown and contain the same tasks as the mapping executions in the prior tutorials. Last Updated: 29-Aug-14 Page 38 of 42

39 Task 6: Replicating new records to Hive using Oracle GoldenGate Oracle GoldenGate allows the capture of completed transactions from a source database, and the replication of these changes to a target system. In this tutorial we will replicate inserts into the MOVIE table in MySQL to the respective movie table in Hive. Oracle GoldenGate provides this capability through the GoldenGate Adapters and implemented examples for Hive, HDFS, and HBase. Flume Log-stream Logs MySQL Movie HDFS file Activity Task 2: Sqoop Map Task 6: OGG Load Hive ext. table Activity Hive movie Task 3: Hive Map Avg. Movie Ratings Task 1: Topology and Models Hive movie_rating Task 5: ODI Package Task 4: OLH Map Oracle MOVIE_RATING The GoldenGate processes in detail are as following: Capture Extract EMOV Trail File TM Pump Extract PMOV Java Adapter MySQL table MOVIE HDFS file ogg_movie Hive table movie EMOV.prm PMOV.prm PMOV.properties myhivehandler.jar Last Updated: 29-Aug-14 Page 39 of 42

40 1. Start a terminal window from the menu bar by single-clicking on the Terminal icon 2. In the terminal window, execute the commands: cd /u01/ogg ggsci 3. Start the GoldenGate manager process by executing start mgr 4. Add and start the GoldenGate extract processes by executing obey dirprm/bigdata.oby Note: Ignore any errors shown from the stop and delete commands at the beginning. 5. See the status of the newly added processes by executing info all Last Updated: 29-Aug-14 Page 40 of 42

41 6. Start a second terminal window from the menu bar and enter the command: mysql --user=root --password=welcome1 odidemo 7. Insert a new row into the MySQL table movie by executing the following command: insert into MOVIE (MOVIE_ID,TITLE,YEAR,BUDGET,GROSS,PLOT_SUMMARY) values (1, 'Sharknado 2', 2014, , , 'Flying sharks attack city'); Note: Alternatively you can execute the following command: source ~/movie/moviework/ogg/mysql_insert_movie.sql; 8. Go to the ODI Studio and open the Designer navigator and Models accordion. Rightclick on datastore HiveMovie.movie and select View Data. Last Updated: 29-Aug-14 Page 41 of 42

42 9. In the View Data window choose the Move to last row toolbar button ( ). The inserted row with movie_id 1 should be in the last row. You might have to scroll all the way down to see it. Refresh the screen if you don t see the entry. Summary You have now successfully completed the Hands on Lab, and have successfully performed an end-to-end load through a Hadoop Data Reservoir using Oracle Data Integrator and Oracle GoldenGate. The strength of this products is to provide an easy-to-use approach to developing performant data integration flows that utilize the strength of the underlying environments without adding proprietary transformation engines. This is especially relevant in the age of Big Data. Last Updated: 29-Aug-14 Page 42 of 42

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose

Setting up the Oracle Warehouse Builder Project. Topics. Overview. Purpose Setting up the Oracle Warehouse Builder Project Purpose In this tutorial, you setup and configure the project environment for Oracle Warehouse Builder 10g Release 2. You create a Warehouse Builder repository

More information

Data processing goes big

Data processing goes big Test report: Integration Big Data Edition Data processing goes big Dr. Götz Güttich Integration is a powerful set of tools to access, transform, move and synchronize data. With more than 450 connectors,

More information

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This

More information

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files

Application. 1.1 About This Tutorial. 1.1.1 Tutorial Requirements. 1.1.2 Provided Files About This Tutorial 1Creating an End-to-End HL7 Over MLLP Application 1.1 About This Tutorial 1.1.1 Tutorial Requirements 1.1.2 Provided Files This tutorial takes you through the steps of creating an end-to-end

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

Lesson 5 Build Transformations

Lesson 5 Build Transformations Lesson 5 Build Transformations Pentaho Data Integration, or PDI, is a comprehensive ETL platform allowing you to access, prepare, analyze and immediately derive value from both traditional and big data

More information

OLH: Oracle Loader for Hadoop OSCH: Oracle SQL Connector for Hadoop Distributed File System (HDFS)

OLH: Oracle Loader for Hadoop OSCH: Oracle SQL Connector for Hadoop Distributed File System (HDFS) Use Data from a Hadoop Cluster with Oracle Database Hands-On Lab Lab Structure Acronyms: OLH: Oracle Loader for Hadoop OSCH: Oracle SQL Connector for Hadoop Distributed File System (HDFS) All files are

More information

Oracle Data Integrators for Beginners. Presented by: Dip Jadawala Company: BizTech Session ID: 9950

Oracle Data Integrators for Beginners. Presented by: Dip Jadawala Company: BizTech Session ID: 9950 Oracle Data Integrators for Beginners Presented by: Dip Jadawala Company: BizTech Session ID: 9950 Please silence your cell phones Overview Introductions Architecture of ODI Topology Manager Designer Operator

More information

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

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

Working with SQL Server Integration Services

Working with SQL Server Integration Services SQL Server Integration Services (SSIS) is a set of tools that let you transfer data to and from SQL Server 2005. In this lab, you ll work with the SQL Server Business Intelligence Development Studio to

More information

WebSphere Business Monitor V7.0 Business space dashboards

WebSphere Business Monitor V7.0 Business space dashboards Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Managing Third Party Databases and Building Your Data Warehouse

Managing Third Party Databases and Building Your Data Warehouse Managing Third Party Databases and Building Your Data Warehouse By Gary Smith Software Consultant Embarcadero Technologies Tech Note INTRODUCTION It s a recurring theme. Companies are continually faced

More information

Using Oracle Data Integrator with Essbase, Planning and the Rest of the Oracle EPM Products

Using Oracle Data Integrator with Essbase, Planning and the Rest of the Oracle EPM Products Using Oracle Data Integrator with Essbase, Planning and the Rest of the Oracle EPM Products Edward Roske eroske@interrel.com BLOG: LookSmarter.blogspot.com WEBSITE: www.interrel.com TWITTER: ERoske 2 4

More information

WebSphere Business Monitor V6.2 Business space dashboards

WebSphere Business Monitor V6.2 Business space dashboards Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 What this exercise is about... 2 Lab requirements... 2 What you should

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant

NetIQ. How to guides: AppManager v7.04 Initial Setup for a trial. Haf Saba Attachmate NetIQ. Prepared by. Haf Saba. Senior Technical Consultant How to guides: AppManager v7.04 Initial Setup for a trial By NetIQ Prepared by Haf Saba Senior Technical Consultant Asia Pacific 1 Executive Summary This document will walk you through an initial setup

More information

Getting Started using the SQuirreL SQL Client

Getting Started using the SQuirreL SQL Client Getting Started using the SQuirreL SQL Client The SQuirreL SQL Client is a graphical program written in the Java programming language that will allow you to view the structure of a JDBC-compliant database,

More information

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide

Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Sage Intelligence Financial Reporting for Sage ERP X3 Version 6.5 Installation Guide Table of Contents TABLE OF CONTENTS... 3 1.0 INTRODUCTION... 1 1.1 HOW TO USE THIS GUIDE... 1 1.2 TOPIC SUMMARY...

More information

Deep Quick-Dive into Big Data ETL with ODI12c and Oracle Big Data Connectors Mark Rittman, CTO, Rittman Mead Oracle Openworld 2014, San Francisco

Deep Quick-Dive into Big Data ETL with ODI12c and Oracle Big Data Connectors Mark Rittman, CTO, Rittman Mead Oracle Openworld 2014, San Francisco Deep Quick-Dive into Big Data ETL with ODI12c and Oracle Big Data Connectors Mark Rittman, CTO, Rittman Mead Oracle Openworld 2014, San Francisco About the Speaker Mark Rittman, Co-Founder of Rittman Mead

More information

ER/Studio 8.0 New Features Guide

ER/Studio 8.0 New Features Guide ER/Studio 8.0 New Features Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +33 15 7602 081 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

Oracle Data Integrator 11g: Integration and Administration

Oracle Data Integrator 11g: Integration and Administration Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Data Integrator 11g: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01927-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide

SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24. Data Federation Administration Tool Guide SAP Business Objects Business Intelligence platform Document Version: 4.1 Support Package 7 2015-11-24 Data Federation Administration Tool Guide Content 1 What's new in the.... 5 2 Introduction to administration

More information

BID2WIN Workshop. Advanced Report Writing

BID2WIN Workshop. Advanced Report Writing BID2WIN Workshop Advanced Report Writing Please Note: Please feel free to take this workbook home with you! Electronic copies of all lab documentation are available for download at http://www.bid2win.com/userconf/2011/labs/

More information

Microsoft Access 2010 handout

Microsoft Access 2010 handout Microsoft Access 2010 handout Access 2010 is a relational database program you can use to create and manage large quantities of data. You can use Access to manage anything from a home inventory to a giant

More information

WebSphere Business Monitor V6.2 KPI history and prediction lab

WebSphere Business Monitor V6.2 KPI history and prediction lab Copyright IBM Corporation 2009 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 6.2 LAB EXERCISE WebSphere Business Monitor V6.2 KPI history and prediction lab What this exercise is about... 1 Lab requirements...

More information

Developing SQL and PL/SQL with JDeveloper

Developing SQL and PL/SQL with JDeveloper Seite 1 von 23 Developing SQL and PL/SQL with JDeveloper Oracle JDeveloper 10g Preview Technologies used: SQL, PL/SQL An Oracle JDeveloper Tutorial September 2003 Content This tutorial walks through the

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Introduction to Big data. Why Big data? Case Studies. Introduction to Hadoop. Understanding Features of Hadoop. Hadoop Architecture.

Introduction to Big data. Why Big data? Case Studies. Introduction to Hadoop. Understanding Features of Hadoop. Hadoop Architecture. Big Data Hadoop Administration and Developer Course This course is designed to understand and implement the concepts of Big data and Hadoop. This will cover right from setting up Hadoop environment in

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Creating Interactive Dashboards and Using Oracle Business Intelligence Answers Purpose This tutorial shows you how to build, format, and customize Oracle Business

More information

Oracle Fusion Middleware. Getting Started with Oracle Data Integrator 12c

Oracle Fusion Middleware. Getting Started with Oracle Data Integrator 12c Oracle Fusion Middleware Getting Started with Oracle Data Integrator 12c October 2015 Oracle Fusion Middleware Getting Started with Oracle Data Integrator, 12c Copyright 2010, 2015, Oracle and/or its affiliates.

More information

Migrating to Azure SQL Database

Migrating to Azure SQL Database Migrating to Azure SQL Database Contents Azure account required for lab... 3 SQL Azure Migration Wizard Overview... 3 Provisioning an Azure SQL Database... 4 Exercise 1: Analyze and resolve... 8 Exercise

More information

Database Forms and Reports Tutorial

Database Forms and Reports Tutorial Database Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Arena Tutorial 1. Installation STUDENT 2. Overall Features of Arena

Arena Tutorial 1. Installation STUDENT 2. Overall Features of Arena Arena Tutorial This Arena tutorial aims to provide a minimum but sufficient guide for a beginner to get started with Arena. For more details, the reader is referred to the Arena user s guide, which can

More information

Oracle Big Data Essentials

Oracle Big Data Essentials Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 40291196 Oracle Big Data Essentials Duration: 3 Days What you will learn This Oracle Big Data Essentials training deep dives into using the

More information

Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading

Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading Intelligent Event Processer (IEP) Tutorial Detection of Insider Stock Trading Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054 U.S.A. November 2008 Page 1 of 29 Contents Setting Up the

More information

Cloudera Manager Training: Hands-On Exercises

Cloudera Manager Training: Hands-On Exercises 201408 Cloudera Manager Training: Hands-On Exercises General Notes... 2 In- Class Preparation: Accessing Your Cluster... 3 Self- Study Preparation: Creating Your Cluster... 4 Hands- On Exercise: Working

More information

Building and Using Web Services With JDeveloper 11g

Building and Using Web Services With JDeveloper 11g Building and Using Web Services With JDeveloper 11g Purpose In this tutorial, you create a series of simple web service scenarios in JDeveloper. This is intended as a light introduction to some of the

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Virtual Office Remote Installation Guide

Virtual Office Remote Installation Guide Virtual Office Remote Installation Guide Table of Contents VIRTUAL OFFICE REMOTE INSTALLATION GUIDE... 3 UNIVERSAL PRINTER CONFIGURATION INSTRUCTIONS... 12 CHANGING DEFAULT PRINTERS ON LOCAL SYSTEM...

More information

Getting Started with Oracle

Getting Started with Oracle Getting Started with Oracle Data Integrator 11g: A Hands-On Tutorial Combine high volume data movement, complex transformations and real-time data integration with the robust capabilities of ODI in this

More information

Visual Studio.NET Database Projects

Visual Studio.NET Database Projects Visual Studio.NET Database Projects CHAPTER 8 IN THIS CHAPTER Creating a Database Project 294 Database References 296 Scripts 297 Queries 312 293 294 Visual Studio.NET Database Projects The database project

More information

Actian Analytics Platform Express Hadoop SQL Edition 2.0

Actian Analytics Platform Express Hadoop SQL Edition 2.0 Actian Analytics Platform Express Hadoop SQL Edition 2.0 Tutorial AH-2-TU-05 This Documentation is for the end user's informational purposes only and may be subject to change or withdrawal by Actian Corporation

More information

AWS Schema Conversion Tool. User Guide Version 1.0

AWS Schema Conversion Tool. User Guide Version 1.0 AWS Schema Conversion Tool User Guide AWS Schema Conversion Tool: User Guide Copyright 2016 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade dress may

More information

Talend Open Studio for MDM. Getting Started Guide 6.0.0

Talend Open Studio for MDM. Getting Started Guide 6.0.0 Talend Open Studio for MDM Getting Started Guide 6.0.0 Talend Open Studio for MDM Adapted for v6.0.0. Supersedes previous releases. Publication date: July 2, 2015 Copyleft This documentation is provided

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

10.3.1.8 Lab - Configure a Windows 7 Firewall

10.3.1.8 Lab - Configure a Windows 7 Firewall 5.0 10.3.1.8 Lab - Configure a Windows 7 Firewall Print and complete this lab. In this lab, you will explore the Windows 7 Firewall and configure some advanced settings. Recommended Equipment Step 1 Two

More information

Best Practices for Implementing Oracle Data Integrator (ODI) July 21, 2011

Best Practices for Implementing Oracle Data Integrator (ODI) July 21, 2011 July 21, 2011 Lee Anne Spencer Founder & CEO Global View Analytics Cheryl McCormick Chief Architect Global View Analytics Agenda Introduction Oracle Data Integrator ODI Components Best Practices Implementation

More information

Create an Excel BI report and share on SharePoint 2013

Create an Excel BI report and share on SharePoint 2013 2013 Create an Excel BI report and share on SharePoint 2013 Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web

More information

Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02

Tutorial: Mobile Business Object Development. Sybase Unwired Platform 2.2 SP02 Tutorial: Mobile Business Object Development Sybase Unwired Platform 2.2 SP02 DOCUMENT ID: DC01208-01-0222-01 LAST REVISED: January 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

Oracle Data Integrator: Administration and Development

Oracle Data Integrator: Administration and Development Oracle Data Integrator: Administration and Development What you will learn: In this course you will get an overview of the Active Integration Platform Architecture, and a complete-walk through of the steps

More information

Using the Query Analyzer

Using the Query Analyzer Using the Query Analyzer Using the Query Analyzer Objectives Explore the Query Analyzer user interface. Learn how to use the menu items and toolbars to work with SQL Server data and objects. Use object

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01927-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

Exercise Safe Commands and Audit Trail

Exercise Safe Commands and Audit Trail Exercise Safe Commands and Audit Trail Table of Contents Exercise 1: Secure Objects with Safe Commands...2 Exercise 2: Record User Actions in the Audit Trail... 13 3.1 Setting up the SQL Server for Audit

More information

Team Foundation Server 2012 Installation Guide

Team Foundation Server 2012 Installation Guide Team Foundation Server 2012 Installation Guide Page 1 of 143 Team Foundation Server 2012 Installation Guide Benjamin Day benday@benday.com v1.0.0 November 15, 2012 Team Foundation Server 2012 Installation

More information

Intellect Platform - Tables and Templates Basic Document Management System - A101

Intellect Platform - Tables and Templates Basic Document Management System - A101 Intellect Platform - Tables and Templates Basic Document Management System - A101 Interneer, Inc. 4/12/2010 Created by Erika Keresztyen 2 Tables and Templates - A101 - Basic Document Management System

More information

Installation Instruction STATISTICA Enterprise Server

Installation Instruction STATISTICA Enterprise Server Installation Instruction STATISTICA Enterprise Server Notes: ❶ The installation of STATISTICA Enterprise Server entails two parts: a) a server installation, and b) workstation installations on each of

More information

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems A Sexy UI for Progress OpenEdge using JSDO and Kendo UI Ricardo Perdigao, Solutions Architect Edsel Garcia, Principal Software Engineer Jean Munro, Senior Systems Engineer Dan Mitchell, Principal Systems

More information

GoldenGate and ODI - A Perfect Match for Real-Time Data Warehousing

GoldenGate and ODI - A Perfect Match for Real-Time Data Warehousing GoldenGate and ODI - A Perfect Match for Real-Time Data Warehousing Michael Rainey, Principal Consultant, Rittman Mead RMOUG Training Days, February 2013 About me... Michael Rainey, Principal Consultant,

More information

VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3

VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3 VMware vcenter Discovered Machines Import Tool User's Guide Version 5.3.0.25 for vcenter Configuration Manager 5.3 This document supports the version of each product listed and supports all subsequent

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

IBM Information Server

IBM Information Server IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01 IBM Information Server Version 8 Release 1 IBM Information Server Administration Guide SC18-9929-01

More information

Microsoft Office Access 2007 which I refer to as Access throughout this book

Microsoft Office Access 2007 which I refer to as Access throughout this book Chapter 1 Getting Started with Access In This Chapter What is a database? Opening Access Checking out the Access interface Exploring Office Online Finding help on Access topics Microsoft Office Access

More information

for Sage 100 ERP Business Insights Overview Document

for Sage 100 ERP Business Insights Overview Document for Sage 100 ERP Business Insights Document 2012 Sage Software, Inc. All rights reserved. Sage Software, Sage Software logos, and the Sage Software product and service names mentioned herein are registered

More information

DCA. Document Control & Archiving USER S GUIDE

DCA. Document Control & Archiving USER S GUIDE DCA Document Control & Archiving USER S GUIDE Decision Management International, Inc. 1111 Third Street West Suite 250 Bradenton, FL 34205 Phone 800-530-0803 FAX 941-744-0314 www.dmius.com Copyright 2002,

More information

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients

Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients Technical Paper Build Your First Web-based Report Using the SAS 9.2 Business Intelligence Clients A practical introduction to SAS Information Map Studio and SAS Web Report Studio for new and experienced

More information

BSDI Advanced Fitness & Wellness Software

BSDI Advanced Fitness & Wellness Software BSDI Advanced Fitness & Wellness Software 6 Kellie Ct. Califon, NJ 07830 http://www.bsdi.cc INSTRUCTION SHEET FOR MOVING YOUR DATABASE FROM ONE COMPUTER TO ANOTHER This document will outline the steps

More information

PowerLogic ION Enterprise 6.0

PowerLogic ION Enterprise 6.0 70002-0298-00 06/2009 PowerLogic ION Enterprise 6.0 Power management software User guide Notices This section describes the symbols used in this guide. Danger This alerts you to things that may cause

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Personal Call Manager User Guide. BCM Business Communications Manager

Personal Call Manager User Guide. BCM Business Communications Manager Personal Call Manager User Guide BCM Business Communications Manager Document Status: Standard Document Version: 04.01 Document Number: NN40010-104 Date: August 2008 Copyright Nortel Networks 2005 2008

More information

Infoview XIR3. User Guide. 1 of 20

Infoview XIR3. User Guide. 1 of 20 Infoview XIR3 User Guide 1 of 20 1. WHAT IS INFOVIEW?...3 2. LOGGING IN TO INFOVIEW...4 3. NAVIGATING THE INFOVIEW ENVIRONMENT...5 3.1. Home Page... 5 3.2. The Header Panel... 5 3.3. Workspace Panel...

More information

Video Administration Backup and Restore Procedures

Video Administration Backup and Restore Procedures CHAPTER 12 Video Administration Backup and Restore Procedures This chapter provides procedures for backing up and restoring the Video Administration database and configuration files. See the following

More information

Installing SQL Express. For CribMaster 9.2 and Later

Installing SQL Express. For CribMaster 9.2 and Later Installing SQL Express For CribMaster 9.2 and Later CRIBMASTER USER GUIDE Installing SQL Express Document ID: CM9-031-03012012 Copyright CribMaster. 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,

More information

Oracle Financial Services Data Integration Hub Foundation Pack Extension for Data Relationship Management Interface

Oracle Financial Services Data Integration Hub Foundation Pack Extension for Data Relationship Management Interface Oracle Financial Services Data Integration Hub Foundation Pack Extension for Data Relationship Management Interface User Manual 8.0.1.0.0 Page i Table of Contents TABLE OF CONTENTS PREFACE... 4 Audience...

More information

2010 Ing. Punzenberger COPA-DATA GmbH. All rights reserved.

2010 Ing. Punzenberger COPA-DATA GmbH. All rights reserved. 2010 Ing. Punzenberger COPA-DATA GmbH All rights reserved. Distribution and/or reproduction of this document or parts thereof in any form are permitted solely with the written permission of the company

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3

INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 INTEGRATING MICROSOFT DYNAMICS CRM WITH SIMEGO DS3 Often the most compelling way to introduce yourself to a software product is to try deliver value as soon as possible. Simego DS3 is designed to get you

More information

Decision Support AITS University Administration. EDDIE 4.1 User Guide

Decision Support AITS University Administration. EDDIE 4.1 User Guide Decision Support AITS University Administration EDDIE 4.1 User Guide 2 P a g e EDDIE (BI Launch Pad) 4.1 User Guide Contents Introduction to EDDIE... 4 Log into EDDIE... 4 Overview of EDDIE Homepage...

More information

Crystal Reports Payroll Exercise

Crystal Reports Payroll Exercise Crystal Reports Payroll Exercise Objective This document provides step-by-step instructions on how to build a basic report on Crystal Reports XI on the MUNIS System supported by MAISD. The exercise will

More information

SAS Business Data Network 3.1

SAS Business Data Network 3.1 SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,

More information

Magaya Software Installation Guide

Magaya Software Installation Guide Magaya Software Installation Guide MAGAYA SOFTWARE INSTALLATION GUIDE INTRODUCTION Introduction This installation guide explains the system requirements for installing any Magaya software, the steps to

More information

SAS BI Dashboard 4.3. User's Guide. SAS Documentation

SAS BI Dashboard 4.3. User's Guide. SAS Documentation SAS BI Dashboard 4.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS BI Dashboard 4.3: User s Guide. Cary, NC: SAS Institute

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

ACTIVE DIRECTORY DEPLOYMENT

ACTIVE DIRECTORY DEPLOYMENT ACTIVE DIRECTORY DEPLOYMENT CASAS Technical Support 800.255.1036 2009 Comprehensive Adult Student Assessment Systems. All rights reserved. Version 031809 CONTENTS 1. INTRODUCTION... 1 1.1 LAN PREREQUISITES...

More information

Business Intelligence Tutorial: Introduction to the Data Warehouse Center

Business Intelligence Tutorial: Introduction to the Data Warehouse Center IBM DB2 Universal Database Business Intelligence Tutorial: Introduction to the Data Warehouse Center Version 8 IBM DB2 Universal Database Business Intelligence Tutorial: Introduction to the Data Warehouse

More information

Mitigation Planning Portal MPP Reporting System

Mitigation Planning Portal MPP Reporting System Mitigation Planning Portal MPP Reporting System Updated: 7/13/2015 Introduction Access the MPP Reporting System by clicking on the Reports tab and clicking the Launch button. Within the system, you can

More information

System Administrator Guide

System Administrator Guide System Administrator Guide Webroot Software, Inc. PO Box 19816 Boulder, CO 80308 www.webroot.com Version 3.5 Webroot AntiSpyware Corporate Edition System Administrator Guide Version 3.5 2007 Webroot Software,

More information

5 Setting up a Contact Center

5 Setting up a Contact Center contact_center.fm 5 This example describes the setup and configuration of an OpenScape Office Contact Center based on a fictional customer scenario. It is intended to assist you in setting up a customized

More information

HareDB HBase Client Web Version USER MANUAL HAREDB TEAM

HareDB HBase Client Web Version USER MANUAL HAREDB TEAM 2013 HareDB HBase Client Web Version USER MANUAL HAREDB TEAM Connect to HBase... 2 Connection... 3 Connection Manager... 3 Add a new Connection... 4 Alter Connection... 6 Delete Connection... 6 Clone Connection...

More information

Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager

Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager Query JD Edwards EnterpriseOne Customer Credit using Oracle BPEL Process Manager 1 Overview In this tutorial you will be querying JD Edwards EnterpriseOne for Customer Credit information. This is a two

More information