Transcript
Page 1: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

IPN - Business Intelligence

Duración: 250 horas.

Horario: Sabatino de 8:00 a 16:00 horas.

Incluye:

1. Curso presencial de 250 horas.

2.- Material oficial de Oracle University (e-kit´s) de los siguientes cursos:

- Oracle Database 12c: SQL & PLSQL Fundamentals

- Introducción a: Business intelligence e Instalación de ambiente

- Oracle BI 11g R1: Create Analyses and DashBoards

- Oracle BI 11g R1: Build Repositories

- Oracle BI 11g R1: Publisher fundamentals

- Oracle Essbase 11.1.2

- Preparación para examen y aplicacion de examen demo

3.- 1 Voucher de certificación a elejir

Requisitos:

Es Indispensable traer lap-top con las siguientes características:

1. Procesador: Intel(R) Core(TM) i5 ó i7 Quad Core a 2.0 GHz o un procesador equivalente

en Intel o AMD de cuatro núcleos.

2. Tipo de Sistema Operativo Windows 7 u 8 a 64 Bits.

3. Mínimo de memoria RAM: 12 GB.

4. Mínimo de espacio en Disco 150 GB disponibles.

Page 2: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Oracle University | Contact Us: 001-855-844-3881

Oracle Database: SQL and PL/SQL Fundamentals

Duration: 5 Days

What you will learn

This Oracle Database: SQL and PL/SQL Fundamentals training delivers the fundamentals of SQL and PL/SQL along

with the benefits of the programming languages using Oracle Database technology. You'll explore the concepts of

relational databases.

Learn To:

Write queries against single and multiple tables, manipulate data in tables and create database objects.

Use single row functions to customize output.

Invoke conversion functions and conditional expressions.

Use group functions to report aggregated data.

Create PL/SQL blocks of application code that can be shared by multiple forms, reports and data management

applications.

Develop anonymous PL/SQL blocks, stored procedures and functions.

Declare identifiers and trap exceptions.

Use DML statements to manage data.

Use DDL statements to manage database objects.

Declare PL/SQL Variables.

Conditionally control code flow (loops, control structures).

Describe stored procedures and functions.

Retrieve row and column data from tables.

Benefits to You

Ensure fast, reliable, secure and easy to manage performance. Optimize database workloads, lower IT costs and deliver

a higher quality of service by enabling consolidation onto database clouds.

Hands-On Practices

Demonstrations and hands-on practice reinforce the fundamental concepts that you’ll learn in this course. By enrolling in

this course, you’ll begin using Oracle SQL Developer to develop these program units. SQL*Plus and JDeveloper are

available as optional tools.

Course Bundle

Note: This course is a combination of Oracle Database: SQL Workshop I and Oracle Database: PL/SQL Fundamentals

courses.

AudienceApplication Developers

Copyright © 2013, Oracle. All rights reserved. Page 1

Page 3: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Forms DeveloperFunctional ImplementerPL/SQL DeveloperPortal DeveloperReports DeveloperTechnical Consultant

Related Training

Required Prerequisites

Familiarity with data processing concepts and techniques

Familiarity with programming concepts

Course ObjectivesRun data manipulation statements (DML) to update data in the Oracle Database.

Design PL/SQL anonymous block that execute efficiently.

Describe the features and syntax of PL/SQL.

Handle runtime errors.

Describe stored procedures and functions.

Use PL/SQL programming constructs and conditionally control code flow (loops, control structures, and explicit cursors).

Use cursors to process rows.

Identify the major structural components of the Oracle Database 11g.

Retrieve row and column data from tables with the SELECT statement.

Create reports of sorted and restricted data.

Employ SQL functions to generate and retrieve customized data.

Display data from multiple tables using the ANSI SQL 99 JOIN syntax.

Create reports of aggregated data.

Run data definition language (DDL) statements to create and manage schema objects.

Course Topics

IntroductionOverview of Oracle Database 12c and related products

Copyright © 2013, Oracle. All rights reserved. Page 2

Page 4: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Overview of relational database management concepts and terminologiesIntroduction to SQL and its development environmentsThe HR schema and the tables used in this courseOracle Database documentation and additional resources

Retrieve Data using the SQL SELECT Statement List the capabilities of SQL SELECT statementsGenerate a report of data from the output of a basic SELECT statementUse arithmetic expressions and NULL values in the SELECT statementInvoke Column aliasesConcatenation operator, literal character strings, alternative quote operator, and the DISTINCT keywordDisplay the table structure using the DESCRIBE command

Restricted and Sorted Data Write queries with a WHERE clause to limit the output retrievedDescribe the comparison operators and logical operatorsDescribe the rules of precedence for comparison and logical operatorsUsage of character string literals in the WHERE clauseWrite queries with an ORDER BY clause Sort the output in descending and ascending orderSubstitution Variables

Usage of Single-Row Functions to Customize Output List the differences between single row and multiple row functionsManipulate strings using character functionsManipulate numbers with the ROUND, TRUNC, and MOD functionsPerform arithmetic with date dataManipulate dates with the DATE functions

Conversion Functions and Conditional Expressions Describe implicit and explicit data type conversionDescribe the TO_CHAR, TO_NUMBER, and TO_DATE conversion functionsNesting multiple functionsApply the NVL, NULLIF, and COALESCE functions to dataUsage of conditional IF THEN ELSE logic in a SELECT statement

Aggregated Data Using the Group Functions Usage of the aggregation functions in SELECT statements to produce meaningful reportsDescribe the AVG, SUM, MIN, and MAX functionHow to handle Null Values in a group function?Divide the data in groups by using the GROUP BY clauseExclude groups of date by using the HAVING clause

Display Data From Multiple TablesWrite SELECT statements to access data from more than one tableJoin Tables Using SQL:1999 Syntax View data that does not meet a join condition by using outer joinsJoin a table to itself by using a self joinCreate Cross Joins

Usage of Subqueries to Solve QueriesUse a Subquery to Solve a Problem

Copyright © 2013, Oracle. All rights reserved. Page 3

Page 5: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Single-Row Subqueries Group Functions in a Subquery Multiple-Row Subqueries Use the ANY and ALL Operator in Multiple-Row Subqueries Use the EXISTS Operator

SET OperatorsDescribe the SET operatorsUse a SET operator to combine multiple queries into a single queryDescribe the UNION, UNION ALL, INTERSECT, and MINUS OperatorsUse the ORDER BY Clause in Set Operations

Data ManipulationAdd New Rows to a TableChange the Data in a Table Use the DELETE and TRUNCATE StatementsHow to save and discard changes with the COMMIT and ROLLBACK statementsImplement Read ConsistencyDescribe the FOR UPDATE Clause

DDL Statements to Create and Manage TablesCategorize Database ObjectsCreate Tables Describe the data typesUnderstand ConstraintsCreate a table using a subqueryHow to alter a table?How to drop a table?

Other Schema ObjectsCreate, modify, and retrieve data from a viewPerform Data manipulation language (DML) operations on a viewHow to drop a view?Create, use, and modify a sequenceCreate and drop indexesCreate and drop synonyms

Introduction to PL/SQLPL/SQL Overview List the benefits of PL/SQL SubprogramsOverview of the Types of PL/SQL blocksCreate a Simple Anonymous Block Generate the Output from a PL/SQL Block

PL/SQL IdentifiersList the different Types of Identifiers in a PL/SQL subprogramUsage of the Declarative Section to Define IdentifiersUse of variables to store dataScalar Data Types%TYPE Attribute Bind VariablesSequences in PL/SQL Expressions

Copyright © 2013, Oracle. All rights reserved. Page 4

Page 6: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Write Executable StatementsBasic PL/SQL Block Syntax GuidelinesHow to comment code?SQL Functions in PL/SQLData Type ConversionNested Blocks Operators in PL/SQL

Interaction with the Oracle Server SELECT Statements in PL/SQL to Retrieve dataData Manipulation in the Server Using PL/SQL The SQL Cursor conceptLearn to use SQL Cursor Attributes to Obtain Feedback on DMLHow to save and discard transactions?

Control StructuresConditional processing Using IF StatementsConditional processing Using CASE StatementsSimple Loop StatementWhile Loop StatementFor Loop StatementThe Continue Statement

Usage of Composite Data Types PL/SQL Records The %ROWTYPE Attribute Insert and Update with PL/SQL RecordsAssociative Arrays (INDEX BY Tables)INDEX BY Table Methods INDEX BY Table of Records

Explicit CursorsUnderstand Explicit CursorsDeclare the CursorHow to open the Cursor?Fetching data from the CursorHow to close the Cursor?Cursor FOR loopExplicit Cursor AttributesFOR UPDATE Clause and WHERE CURRENT Clause

Exception Handling What are Exceptions?Handle Exceptions with PL/SQLTrap Predefined Oracle Server ErrorsTrap Non-Predefined Oracle Server ErrorsTrap User-Defined Exceptions Propagate ExceptionsRAISE_APPLICATION_ERROR Procedure

Stored Procedures and FunctionsWhat are Stored Procedures and Functions?

Copyright © 2013, Oracle. All rights reserved. Page 5

Page 7: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Differentiate between anonymous blocks and subprogramsCreate a Simple ProcedureCreate a Simple Procedure with IN parameterCreate a Simple FunctionExecute a Simple ProcedureExecute a Simple Function

Copyright © 2013, Oracle. All rights reserved. Page 6

Page 8: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Introducción a Business Inteligence e instalación de ambiente Introducing Oracle BI Standard Edition One Oracle Database 10g Standard Edition One Oracle BI Server Oracle BI Answers Oracle BI Interactive Dashboards Oracle BI Publisher Oracle BI Standard Edition One Usage Considerations

Using the Tutorial Who Should Read This Tutorial How This Tutorial Is Organized

Set Up the Data Mart About Setting Up the Data Mart Examining a Completed Warehouse Builder Project Creating the Dimensions and the Cube Creating the Mappings Generating the Mappings Designing a Process Flow Validating and Generating the Process Flow Deploying Mappings and Loading Data Build the BI Repository About the Oracle BI Administration Tool Building the Physical Layer Building the Business Model and Mapping Layer Building the Presentation Layer Creating Calculation Measures Using Initialization Blocks and Variables – Advanced Executing Direct Database Requests - Advanced Using Aggregates - Advanced Creating Time Series Measures – Advanced Adding Multiple Sources - Advanced

Analyze the Data Prerequisites Creating a Query and a Chart Working with Pivot Tables Creating Column Selectors Creating a Narrative View Creating View Selectors Creating Conditional Formats, Gauges, and Navigation

Publish Data on Dashboards Prerequisites Creating an Interactive Dashboard Using Dashboard Prompts and Presentation Variables Create and Publish Reports Logging in to Oracle BI Publisher and Setting Preferences Creating a Report Based on the Operational Data Automatically Delivering BI Publisher Reports Publishing a BI Publisher Report in BI Dashboards Creating an Oracle BI Publisher Report Using BI Server Metadata

Page 9: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Reset the Tutorial Exercise Environment Reset the Oracle Warehouse Builder Environment Reset the BI Server Metadata Repository Reset the BI Presentation Services Web Catalog Next Steps Enhancing the Security of Your Oracle BI Environment Administering the Database Using Oracle Warehouse Builder Administering Oracle Warehouse Builder Administering Oracle BI Server Using Oracle BI Answers and Dashboards Administering Oracle BI Answers and Dashboards Using Oracle BI Publisher Administering Oracle BI Publisher

Page 10: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Oracle University | Contact Us: + 420 2 2143 8459

Oracle BI 11g R1: Create Analyses and Dashboards

Duration: 5 Days

What you will learn

This Oracle BI 11g R1: Create Analyses and Dashboards course for Release 11.1.1.7.0 provides step-by-step

instructions for creating Oracle BI analyses and dashboards in business intelligence applications. You'll begin by

building basic analyses to include in dashboards, with more complexity as the course progresses.

Learn To:

Build analyses and dashboards.

Build and use views and graphs in analyses.

Create and work with KPIs and scorecards.

Create and modify Oracle BI dashboards.

Use Oracle Business Intelligence Mobile to access BI content.

Create mobile applications with Oracle Business Intelligence Mobile App Designer.

Integrate BI content into MS Office applications using Oracle Hyperion Smart View for Office.

Administer objects in the Presentation Services Catalog.

Benefits to You

Transform your organization’s data into intelligence for improved decision making. Provide time-critical, relevant and

accurate insights. Become more efficient at modifying analyses and dashboards.

Explore Oracle Hyperion Smart View for Office

You'll also learn to use Oracle Hyperion Smart View for Office to integrate Oracle BI data and views in presentations and

spreadsheets. Walk away from this course with the knowledge and skills to design mobile applications for BI content

using the trial edition of the Oracle BI Mobile App Designer. Furthermore, you'll explore the use of Oracle BI Briefing

Books, while learning to administer objects in the Oracle BI Presentation Catalog.

AudienceApplication DevelopersBusiness AnalystsBusiness Intelligence DeveloperDeveloperEnd UsersFunctional ImplementerTechnical AdministratorTechnical Consultant

Copyright © 2013, Oracle. All rights reserved. Page 1

Page 11: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Course ObjectivesAdd geographical mapping to analyses

Use BI Mobile to access BI Content

Create and modify Interactive Dashboards

Use hierarchical columns in analyses and views

Create guided navigation links within Interactive Dashboards

Use Delivers to configure Agents to get the results of analyses and deliver them to subscribers

Create and modify Oracle Business Intelligence analyses using Analysis Editor

Perform administration tasks related to the development and configuration of Interactive Dashboards

Administer analyses and other Oracle BI objects

Use Oracle Hyperion Smart View for Office to integrate Oracle BI analysis and Interactive Dashboard content into Office

documents

Combine analysis criteria across multiple subject areas and execute direct database queries

Use Key Performance Indicators and Scorecards to analyze trends and meet business objectives

Build and use views and charts in analyses

Perform pre- and post-aggregate filtering using filters, groups, and selections

Create mobile applications with Oracle Business Intelligence Mobile App Designer

Course Topics

Introduction to Oracle Business Intelligence Enterprise EditionIntroduction to Oracle BI EEArchitecture overviewOracle BI EE sample applicationOverview of Oracle Exalytics Machine

Working with Oracle Business Intelligence AnalysesIntroduction to Oracle BI Analysis EditorOracle BI column typesWorking with analyses in Oracle BIAdding basic formattingSetting analysis propertiesUsing advanced formatting

Filtering Data for AnalysesIntroduction to filters and selections

Copyright © 2013, Oracle. All rights reserved. Page 2

Page 12: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Creating, editing, and grouping filtersAdding prompts to analysesDynamic filtering Using saved analyses as filters

Selecting and Grouping Data in AnalysesCreating selection stepsCreating groupsCreating calculated itemsCreating direct database analysis requestsIncluding advanced SQL clauses in your analysis

Adding Views to AnalysesIntroduction to views, graphs, and editorsWorking with views in Compound LayoutsCreating and editing graphsPerforming common view tasks

Showing Results with Pivot TablesOLAP data source compatibilityCreating, arranging, and formatting a pivot tableUsing hierarchical columnsSorting in pivot tablesSetting aggregation and using totalsShowing an item's relative valueBuilding calculations and displaying running sums

Working with Additional Views in AnalysesCreating simple and advanced trellis viewsCreating performance tile viewsWorking other view typesLinking master-detail views

Visualizing Data: Gauges and MapsWorking with Gauge views Oracle spatial componentsManaging map dataCreating and editing Map viewsInteracting with map viewsOther applications and points of integration for map views

Scorecards and Key Performance IndicatorsObjects and components of Oracle Scorecard and Strategy ManagementKey Performance Indicator (KPI) overviewScorecard document types

Measuring Results with Scorecards and KPIsCreating scorecards and KPIsCreating scorecard documentsEditing scorecards and KPIs

Creating Oracle Business Intelligence Dashboards

Copyright © 2013, Oracle. All rights reserved. Page 3

Page 13: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Creating and editing dashboardsUsing the Dashboard BuilderExploring dashboard object properties and optionsPublishing dashboard pagesCreating personal customizations and using other page options

Configuring Oracle Business Intelligence DashboardsExploring types of dashboard contentEmbedding content in dashboards

Creating Dashboard Prompts and VariablesUnderstanding variablesAdding a named dashboard prompt to a dashboardAdding a hidden named dashboard prompt to a dashboardCreating additional prompt page and setting page preferencesAdding variable prompts to a dashboard

Integrating BI Content with MS OfficeOverview of the Oracle BI Add-in for Microsoft OfficeInstalling Smart ViewCreating Oracle BI EE connections in Smart ViewInserting BI views in to Smart View clients

Working with BI Content in Smart ViewWorking with Views in Smart View ClientsCustomizing BI data in MS OfficeCopying and pasting views between Smart View clientsCopying and pasting views from Oracle BI Presentation services to Smart ViewCreating and publishing views using the View DesignerFederating data from multiple data sources

Oracle Business Intelligence MobileDownloading and using the Oracle BI mobile applicationNavigating the Oracle BI mobile applicationWorking with favorites and local contentWorking with BI contentOracle BI Mobile Security Toolkit

Creating Mobile Applications with Oracle Business Intelligence Mobile App DesignerCreating basic mobile appsPreviewing mobile appsCreating apps with tile pagesCreating subpages and navigation pages

Using Oracle Business Intelligence DeliversConfiguring delivery devices and adding delivery profilesAdding an Alert Section to a dashboardConfiguring an AgentUsing Analysis and KPI conditions to deliver content with AgentsSubscribing to an Agent

Administering the Presentation Catalog

Copyright © 2013, Oracle. All rights reserved. Page 4

Page 14: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Oracle BI and catalog security overviewManaging security using rolesUnderstanding security inheritance Setting object permissionsSetting system privilegesArchiving catalog itemsWorking with Oracle BI Briefing Books

Copyright © 2013, Oracle. All rights reserved. Page 5

Page 15: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

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 of an Oracle BI repository.Students begin by using the Oracle BI Administration Tool to construct a simple repository to address a fictitiouscompany's business requirements. Students import schemas, design and build logical business models, and exposebusiness models to users in the Oracle BI user interface. In the process of constructing the repository, students learnhow to build physical and logical joins, simple measures, and calculation measures. Students also learn how to validatetheir work by creating and running analyses, and verifying query results using the query log.

Students then extend the initial repository and learn how to model more complex business requirements, such as logicaldimension hierarchies, multiple logical table sources, aggregate tables, partitions, and time series data. Students alsolearn how to implement Oracle BI Server security, manage Oracle BI Server cache, set up a multiuser developmentenvironment, and use Administration Tool wizards and utilities to manage, maintain, and enhance repositories. Finally,students are exposed to more advanced topics, such as implicit fact columns, bridge tables, usage tracking, multilingualenvironments, write back, and patch merge.

Learn to: Build and execute analyses to test and verify a dimensional business model Use the Oracle BI Adminstration Tool to administer Oracle BI ServerUse the Oracle BI Administration Tool to build, manage, and maintain an Oracle BI repositoryBuild a dimensional business model to address business intelligence requirements

AudienceApplication DevelopersBusiness AnalystsBusiness Intelligence DeveloperData ModelersData Warehouse AdministratorData Warehouse AnalystData Warehouse DeveloperReports Developer

PrerequisitesRequired PrerequisitesBasic SQL

Data warehouse design

Database design

Dimensional modeling

Copyright © 2010, Oracle. All rights reserved. Page 1

Page 16: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Suggested PrerequisitesOracle BI 11g R1: Create Analyses and Dashboards

Course ObjectivesBuild and run analyses to test and validate a repositoryBuild simple and calculated measures for a fact tableCreate logical dimension hierarchies and level-based measuresModel aggregate tables to speed query processingModel partitions and fragments to improve application performance and usabilityUse variables to streamline administrative tasks and modify metadata content dynamicallyUse time series functions to support historical time comparison analysesSet up security to authenticate users and assign appropriate permissions and privilegesApply cache management techniques to maintain and enhance query performanceSet up query logging for testing and debuggingSet up a multi-user development environmentUse Administration Tool wizards and utilities to manage, maintain, and enhance repositoriesEnable usage tracking to track queries and database usage, and improve query performancePerform a patch merge in a development-to-production scenarioConfigure Oracle BI to support multilingual environmentsBuild the Physical, Business Model and Mapping, and Presentation layers of a repository

Course Topics

Repository BasicsExploring Oracle BI architecture componentsExploring a repository's structure, features, and functionsUsing the Oracle BI Administration ToolCreating a repositoryLoading a repository into Oracle BI Server memory

Building the Physical Layer of a Repository Importing data sourcesSetting up connection pool propertiesDefining keys and joinsExamining physical layer object propertiesCreating alias tables

Building the Business Model and Mapping Layer of a RepositoryBuilding a business modelBuilding logical tables, columns, and sourcesDefining logical joinsBuilding measuresExamining business model object properties

Building the Presentation Layer of a RepositoryExploring Presentation layer objectsCreating Presentation layer objectsModifying Presentation layer objectsExamining Presentation layer object properties

Testing and Validating a Repository

Copyright © 2010, Oracle. All rights reserved. Page 2

Page 17: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Checking repository consistencyTurning on loggingDefining a repository in the initialization fileExecuting analyses to test a repositoryInspecting the query log

Managing Logical Table SourcesAdding multiple logical table sources to a logical tableSpecifying logical content

Adding Calculations to a FactCreating new calculation measures based on existing logical columnsCreating new calculation measures based on physical columnsCreating new calculation measures using the Calculation WizardCreating measures using functions

Working with Logical DimensionsCreating logical dimension hierarchiesCreating level-based measuresCreating share measuresCreating dimension-specific aggregation rulesCreating presentation hierarchiesCreating parent-child hierarchiesUsing calculated members

Using AggregatesModeling aggregate tables to improve query performanceSetting the number of elements in a hierarchyTesting aggregate navigationUsing the Aggregate Persistence Wizard

Using Partitions and FragmentsExploring partition typesModeling partitions in an Oracle BI repositoryUsing the Calculation Wizard to create derived measures

Using Repository VariablesCreating session variablesCreating repository variablesCreating initialization blocksUsing the Variable ManagerUsing dynamic repository variables as filters

Modeling Time Series DataUsing time comparisons in business analysisUsing Oracle BI time series functions to model time series data

Modeling Many-to-Many RelationshipsUsing bridge tables to resolve many-to-many relationships between dimension tables and fact tables

Localizing Oracle BI Metadata and DataLocalizing repository metadata

Copyright © 2010, Oracle. All rights reserved. Page 3

Page 18: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Localizing Oracle BI data

Setting an Implicit Fact ColumnAdding fact columns automatically to dimension-only queriesEnsuring the expected results for dimension-only queriesSelecting a predetermined fact table source Specifying a default join path between dimension tables

Importing Metadata from Multidimensional Data SourcesImporting a multidimensional data source into a repositoryIncorporating horizontal federation into a business modelIncorporating vertical federation into a business modelAdding Essbase measures to a relational modelDisplaying data from multidimensional sources in Oracle BI analyses and dashboards

SecurityExploring Oracle BI default security settingsCreating users and groupsCreating application rolesSetting up object permissionsSetting row-level security (data filters)Setting query limits and timing restrictions

Cache ManagementRestricting tables as non-cacheableUsing Cache ManagerInspecting cache reportsPurging cache entriesModifying cache parameters and optionsSeeding the cache

Enabling Usage TrackingSetting up the sample usage tracking repositoryTracking and storing Oracle BI Server usage at the detailed query levelUsing usage tracking statistics to optimize query performance and aggregation strategiesAnalyzing usage results using Oracle BI Answers and other reporting tools

Multi-user DevelopmentSetting up a multiuser development environmentDeveloping a repository using multiple developersTracking development project history

Configuring Write BackEnabling write back in a repositoryCreating a write back templateGranting write back privilegesEnabling write back in an analysis

Performing a Patch MergeComparing repositoriesEqualizing objectsCreating a patch

Copyright © 2010, Oracle. All rights reserved. Page 4

Page 19: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Applying a patchMaking merge decisions

Copyright © 2010, Oracle. All rights reserved. Page 5

Page 20: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Oracle University | Contact Us: +966 12 739 894

Oracle BI Publisher 11g R1: Fundamentals

Duration: 3 Days

What you will learn

This course will build a foundation of understanding of Oracle BI Publisher 11g. Through Classroom Training or Live

Virtual Class Training, you'll learn the ins and outs of how to use this solution.

Learn To:

Describe the components, basic features and positioning of BI Publisher as a reporting tool.

Create data models by using the Data Model Editor based on Oracle Database 11g.

Define parameters and LOVs for a data model.

Create BI Publisher reports based on data models.

Create report layouts by using the Layout Editor (online).

Analyze data using the Excel Analyzer.

More about Oracle BI Publisher

BI Publisher is Oracle's strategic enterprise reporting and publishing solution. This course will teach you how this

solution allows you to extract data from multiple data sources.

Creating Reports

Furthermore, you'll learn how to create layouts for report data, then publish the highly formatted reports to a wide range

of destinations (printers, faxes, email, and document repositories via FTP or WebDav).

Design Using Microsoft Word or Adobe Acrobat

BI Publisher's report formats can be designed by using familiar tools, such as Microsoft Word or Adobe Acrobat. By

using BI Publisher, you can also schedule reports and deliver the reports to multiple delivery destinations required by

your business.

AudienceApplication DevelopersBusiness AnalystsBusiness Intelligence DeveloperDeliveryEnd UsersFunctional ImplementerReports DeveloperTechnical Consultant

Copyright © 2013, Oracle. All rights reserved. Page 1

Page 21: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Course ObjectivesSchedule and Burst Reports

Perform Translations

Create Reports Integrated With Oracle BI EE

Administer BI Publisher Server

Describe BI Publisher Technology and Architecture

Use Excel Analyzer

Create and Modify Data Models

Create Layouts by Using the Layout Editor

Create RTF Templates by Using Template Builder

Explore and Use the Form Field Method for Creating RTF Templates

Creating and Working with Style and Sub Templates

Course Topics

Introduction to Oracle BI Publisher 11gCourse AgendaOverview of Oracle BI Foundation SuiteOverview of Oracle Fusion MiddlewareOverview of Oracle BI EEEvolving role of BIAddressing BI RequirementsFunctions of Reporting Systems including ChallengesBI Publisher as a Strategic Reporting Solution for All Applications

BI Publisher Technology and ArchitectureFunctional ComponentsLayout TemplatesEnterprise Server Architecture and Performance and ScalabilityDocument Generation Process and Output FormatsSupported Data SourcesUnderlying TechnologyBursting OverviewInternationalization and Language Support

Getting Started with BI PublisherLogging In, the Home Page, and Global Header, and Setting Account PreferencesViewing ReportsManaging Repository ObjectsCreating Reports: Workflow

Copyright © 2013, Oracle. All rights reserved. Page 2

Page 22: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Opening Report Editor and Selecting a Data ModelPreviewing and Configuring LayoutsSetting Report PropertiesUsing Excel Analyzer

Using Data Model Editor to Create Data Models Based on a SQL Query Data SetExploring the Schemas Used in the CourseExploring the Data Model Editor UIExamining the Supported Data Sources and Creating a JDBC ConnectionDefining a JDBC ConnectionCreating a Simple Data Model Based on a SQL Query Data SetViewing Sample XML Data SetsAdding Parameters and LOVs to the QueryViewing Reports with Parameters

Working with Layout EditorOpening the Layout EditorNavigating and Reviewing the Layout Editor UICreating a Layout by Using a Basic TemplateInserting a Layout GridAdding a Table, Formatting Columns, Defining Sorts and Groups, and Applying Conditional FormatsInserting and Editing Charts, and Converting Charts to a Pivot TableAdding Repeating Sections, Text Items, and ImagesWorking with Gauges

Creating RTF Templates by Using Template BuilderExploring and using Template Builder (in MS Word)Using the BI Publisher Menu BarCraeting an RTF Template froma Sample, Changing Field Properties, and Previewing Table DataAdding a Chart to an RTF TemplateDesigning an RTF Template for a BI Publisher ReportCreating a BI Publisher Report by Using Template BuilderExploring the Basic and Form Field MethodsExploring Advanced RTF Template Techniques Including Conditional Formats, Watermarks, Page-Level Calculations, Running Totals, Grouping, and Sorting

Working with Style Templates and Sub TemplatesExplaining Style TemplatesCreating and Managing Style Templates, and Creating an RTF File and Defining Formatting Styles to Create the Style TemplateUploading Localized Version of the RTF TemplateAssociating Style Templates with Reports, Assigning it to RTF Report Layouts, and Creating RTF Templates for Use with a Style TemplateDescribing Sub Templates, Creating an RTF Sub Template, Main RTF Template, Locally Testing, and UploadingDescribing and Defining XSL Sub TemplatesCreating and Implementing XSL Sub TemplatesCalling XSL Sub Templates

BI Publisher Server: Administration and SecurityDescribing the Administration PageSetting, Viewing, and Updating Data SourcesDescribing the Security Model for BI Publisher and Oracle Fusion MiddlewareDescribing Groups, Users, Roles, and PermissionsDescribing Delivery Options Including Print, Fax, Email, WebDav, HTTP Server, FTP, and CUPSDescribing and Configuring BI Publisher Scheduler

Copyright © 2013, Oracle. All rights reserved. Page 3

Page 23: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Describing Runtime Configuration and PropertiesIntegrating with Oracle BI Presentation Services

Scheduling and Bursting ReportsScheduling and Describing a Report Job and Related OptionsManaging and Viewing a Report JobViewing Report Job HistoryDescribing BurstingAdding a Bursting Definition to a Report

Performing TranslationsDescribing Translation TypesTranslating by Using the Localized Template OptionTranslating by Using the XLIFF OptionManaging XLIFF Translations on BI Publisher ServerDescribing the Overall Translation ProcessDescribing Catalog TranslationExporting and Importing the XLIFF for a Catalog Folder

Integrating BI Publisher with Oracle BI Enterprise EditionConfiguring Presentation Catalog and Presentation Services IntegrationNavigating Oracle BI EECreating a Data Model and Report Based on an Oracle BI AnalysisAdding a BI Publisher Report to an Oracle BI EE DashboardCreating a Data Model and Report Based on a BI Server SQL Query Process

Creating Data Models and BI Publisher Reports Based on Other Data SourcesDescribing the Web Services Data SourceDescribing the HTTP (XML/RSS Feed) Data SourceExplaining Proxy Setting for Web Services and HTTP Data SourcesCreating a BI Publisher Report based on an External Web ServiceCreating a BI Publisher Report based on an HTTP Data SetCreating a BI Publisher Report based on an Excel Spreadsheet

Copyright © 2013, Oracle. All rights reserved. Page 4

Page 24: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Oracle University | Contact Us: 1.800.529.0165

Oracle Essbase 11.1.2: Calculate Block Storage Databases (11.1.2.3)

Duration: 2 Days

What you will learn

This Oracle Essbase 11.1.2: Calculate Block Storage Databases (11.1.2.3) training teaches you the principal techniques

and theories for the design of calculations in block storage databases with Essbase Release 11.1.2.3. Expert Oracle

University instructors will review database structure and configuration and teach you basic calculation building blocks,

including FIX and IF statements.

Learn To:

Describe Essbase and block storage database structures.

Develop and test calculation scripts.

Develop advanced calculations.

Optimize databases though dynamic calculations.

Normalize and allocate data.

Benefits to You

By enrolling in this course, you'll become familiar with calculation script development methodology and how to correct

common calculation errors. You'll learn how to effectively leverage dynamic calculations to optimize database

performance and create advanced calculation scripts, such as allocations, cross-database calculations and

multidimensional range calculations. By participating in design discussions and hands-on practice sessions, you'll

reinforce your understanding of important Essbase concepts.

Please Note

This course is also suitable for customers using Hyperion Essbase Analytics 9.3.1 or Oracle Essbase 11.1.x.

AudienceBusiness Intelligence DeveloperData ModelersData Warehouse AdministratorData Warehouse AnalystData Warehouse DeveloperDatabase AdministratorsDatabase DesignersTechnical Consultant

Related Training

Copyright © 2013, Oracle. All rights reserved. Page 1

Page 25: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Required Prerequisites

Oracle Essbase 11.1.2 Bootcamp

Course ObjectivesGain an understanding of the mechanisms by which Essbase stores and calculates data in block storage databases.

Learn the default database calculation order and investigate how it relates to block storage data structures.

Learn practical methods for developing and testing block storage calculations, from the simple to the complex.

Understand where use of dynamic calculation can improve database and calculation performance.

Focus calculations on specific subsets of data.

Compare the different calculation variables available and implement variables in calculation scripts

Investigate different methods for implementing and planning multidimensional allocations.

Course Topics

Essbase OverviewEssbaseEssbase Database TypesBusiness Scenario and Training Environment OverviewBlock Storage Calculation Overview

Data Storage and CalculationData Storage and Calculation FundamentalsDatabase StatisticsData Block CreationDatabase Calculation Process

Calculation Script BasicsCalculation Script OrganizationImplementing a Script Development ProcessIntelligent Calculation

Dynamic Calculation OverviewAbout Dynamic CalculationDynamic Calculation Storage OptionsDesign Considerations for Dynamic CalculationDesign Considerations for Rates and Percentages

Controlling the Calculation ProcessControlling Top-Down CalculationPerformance ConsiderationsCreating Complex Conditionals

Copyright © 2013, Oracle. All rights reserved. Page 2

Page 26: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Copying and Clearing DataCopying DataClearing Data with CLEARDATAClearing Data with CLEARBLOCK

Developing Advanced CalculationsCreating Calculation VariablesReferencing Members Dynamically

Developing Analytic CalculationsTyped Measures OverviewCreating Typed MeasuresCalculating with Typed Measures

Multidimensional Dynamic CalculationsDynamic Calculation OrderOptimization Guidelines

Normalizing DataLoading Data to Upper-Level Members Planning Data NormalizationNormalizing Rates and Drivers

Performing Advanced AllocationsAllocating DataCreating Multiple-Database Calculations

Appendix: Essbase ArchitectureEssbase Architecture OverviewEssbase Components by Tier

Copyright © 2013, Oracle. All rights reserved. Page 3

Page 27: IPN - Business Intelligence - Certificatic · PDF file- Oracle BI 11g R1: ... Forms Developer Functional Implementer ... Overview of Oracle Database 12c and related products

Top Related