IPN - Business Intelligence

Size: px
Start display at page:

Download "IPN - Business Intelligence"

Transcription

1 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 Preparación para examen y aplicacion de examen demo 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.

2 Oracle University Contact Us: 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. Audience Application Developers Copyright 2013, Oracle. All rights reserved. Page 1

3 Forms Developer Functional Implementer PL/SQL Developer Portal Developer Reports Developer Technical Consultant Related Training Required Prerequisites Familiarity with data processing concepts and techniques Familiarity with programming concepts Course Objectives Run 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 Introduction Overview of Oracle Database 12c and related products Copyright 2013, Oracle. All rights reserved. Page 2

4 Overview of relational database management concepts and terminologies Introduction to SQL and its development environments The HR schema and the tables used in this course Oracle Database documentation and additional resources Retrieve Data using the SQL SELECT Statement List the capabilities of SQL SELECT statements Generate a report of data from the output of a basic SELECT statement Use arithmetic expressions and NULL values in the SELECT statement Invoke Column aliases Concatenation operator, literal character strings, alternative quote operator, and the DISTINCT keyword Display the table structure using the DESCRIBE command Restricted and Sorted Data Write queries with a WHERE clause to limit the output retrieved Describe the comparison operators and logical operators Describe the rules of precedence for comparison and logical operators Usage of character string literals in the WHERE clause Write queries with an ORDER BY clause Sort the output in descending and ascending order Substitution Variables Usage of Single-Row Functions to Customize Output List the differences between single row and multiple row functions Manipulate strings using character functions Manipulate numbers with the ROUND, TRUNC, and MOD functions Perform arithmetic with date data Manipulate dates with the DATE functions Conversion Functions and Conditional Expressions Describe implicit and explicit data type conversion Describe the TO_CHAR, TO_NUMBER, and TO_DATE conversion functions Nesting multiple functions Apply the NVL, NULLIF, and COALESCE functions to data Usage 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 reports Describe the AVG, SUM, MIN, and MAX function How to handle Null Values in a group function? Divide the data in groups by using the GROUP BY clause Exclude groups of date by using the HAVING clause Display Data From Multiple Tables Write SELECT statements to access data from more than one table Join Tables Using SQL:1999 Syntax View data that does not meet a join condition by using outer joins Join a table to itself by using a self join Create Cross Joins Usage of Subqueries to Solve Queries Use a Subquery to Solve a Problem Copyright 2013, Oracle. All rights reserved. Page 3

5 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 Operators Describe the SET operators Use a SET operator to combine multiple queries into a single query Describe the UNION, UNION ALL, INTERSECT, and MINUS Operators Use the ORDER BY Clause in Set Operations Data Manipulation Add New Rows to a Table Change the Data in a Table Use the DELETE and TRUNCATE Statements How to save and discard changes with the COMMIT and ROLLBACK statements Implement Read Consistency Describe the FOR UPDATE Clause DDL Statements to Create and Manage Tables Categorize Database Objects Create Tables Describe the data types Understand Constraints Create a table using a subquery How to alter a table? How to drop a table? Other Schema Objects Create, modify, and retrieve data from a view Perform Data manipulation language (DML) operations on a view How to drop a view? Create, use, and modify a sequence Create and drop indexes Create and drop synonyms Introduction to PL/SQL PL/SQL Overview List the benefits of PL/SQL Subprograms Overview of the Types of PL/SQL blocks Create a Simple Anonymous Block Generate the Output from a PL/SQL Block PL/SQL Identifiers List the different Types of Identifiers in a PL/SQL subprogram Usage of the Declarative Section to Define Identifiers Use of variables to store data Scalar Data Types %TYPE Attribute Bind Variables Sequences in PL/SQL Expressions Copyright 2013, Oracle. All rights reserved. Page 4

6 Write Executable Statements Basic PL/SQL Block Syntax Guidelines How to comment code? SQL Functions in PL/SQL Data Type Conversion Nested Blocks Operators in PL/SQL Interaction with the Oracle Server SELECT Statements in PL/SQL to Retrieve data Data Manipulation in the Server Using PL/SQL The SQL Cursor concept Learn to use SQL Cursor Attributes to Obtain Feedback on DML How to save and discard transactions? Control Structures Conditional processing Using IF Statements Conditional processing Using CASE Statements Simple Loop Statement While Loop Statement For Loop Statement The Continue Statement Usage of Composite Data Types PL/SQL Records The %ROWTYPE Attribute Insert and Update with PL/SQL Records Associative Arrays (INDEX BY Tables) INDEX BY Table Methods INDEX BY Table of Records Explicit Cursors Understand Explicit Cursors Declare the Cursor How to open the Cursor? Fetching data from the Cursor How to close the Cursor? Cursor FOR loop Explicit Cursor Attributes FOR UPDATE Clause and WHERE CURRENT Clause Exception Handling What are Exceptions? Handle Exceptions with PL/SQL Trap Predefined Oracle Server Errors Trap Non-Predefined Oracle Server Errors Trap User-Defined Exceptions Propagate Exceptions RAISE_APPLICATION_ERROR Procedure Stored Procedures and Functions What are Stored Procedures and Functions? Copyright 2013, Oracle. All rights reserved. Page 5

7 Differentiate between anonymous blocks and subprograms Create a Simple Procedure Create a Simple Procedure with IN parameter Create a Simple Function Execute a Simple Procedure Execute a Simple Function Copyright 2013, Oracle. All rights reserved. Page 6

8 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

9 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

10 Oracle University Contact Us: 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 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. Audience Application Developers Business Analysts Business Intelligence Developer Developer End Users Functional Implementer Technical Administrator Technical Consultant Copyright 2013, Oracle. All rights reserved. Page 1

11 Course Objectives Add 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 Edition Introduction to Oracle BI EE Architecture overview Oracle BI EE sample application Overview of Oracle Exalytics Machine Working with Oracle Business Intelligence Analyses Introduction to Oracle BI Analysis Editor Oracle BI column types Working with analyses in Oracle BI Adding basic formatting Setting analysis properties Using advanced formatting Filtering Data for Analyses Introduction to filters and selections Copyright 2013, Oracle. All rights reserved. Page 2

12 Creating, editing, and grouping filters Adding prompts to analyses Dynamic filtering Using saved analyses as filters Selecting and Grouping Data in Analyses Creating selection steps Creating groups Creating calculated items Creating direct database analysis requests Including advanced SQL clauses in your analysis Adding Views to Analyses Introduction to views, graphs, and editors Working with views in Compound Layouts Creating and editing graphs Performing common view tasks Showing Results with Pivot Tables OLAP data source compatibility Creating, arranging, and formatting a pivot table Using hierarchical columns Sorting in pivot tables Setting aggregation and using totals Showing an item's relative value Building calculations and displaying running sums Working with Additional Views in Analyses Creating simple and advanced trellis views Creating performance tile views Working other view types Linking master-detail views Visualizing Data: Gauges and Maps Working with Gauge views Oracle spatial components Managing map data Creating and editing Map views Interacting with map views Other applications and points of integration for map views Scorecards and Key Performance Indicators Objects and components of Oracle Scorecard and Strategy Management Key Performance Indicator (KPI) overview Scorecard document types Measuring Results with Scorecards and KPIs Creating scorecards and KPIs Creating scorecard documents Editing scorecards and KPIs Creating Oracle Business Intelligence Dashboards Copyright 2013, Oracle. All rights reserved. Page 3

13 Creating and editing dashboards Using the Dashboard Builder Exploring dashboard object properties and options Publishing dashboard pages Creating personal customizations and using other page options Configuring Oracle Business Intelligence Dashboards Exploring types of dashboard content Embedding content in dashboards Creating Dashboard Prompts and Variables Understanding variables Adding a named dashboard prompt to a dashboard Adding a hidden named dashboard prompt to a dashboard Creating additional prompt page and setting page preferences Adding variable prompts to a dashboard Integrating BI Content with MS Office Overview of the Oracle BI Add-in for Microsoft Office Installing Smart View Creating Oracle BI EE connections in Smart View Inserting BI views in to Smart View clients Working with BI Content in Smart View Working with Views in Smart View Clients Customizing BI data in MS Office Copying and pasting views between Smart View clients Copying and pasting views from Oracle BI Presentation services to Smart View Creating and publishing views using the View Designer Federating data from multiple data sources Oracle Business Intelligence Mobile Downloading and using the Oracle BI mobile application Navigating the Oracle BI mobile application Working with favorites and local content Working with BI content Oracle BI Mobile Security Toolkit Creating Mobile Applications with Oracle Business Intelligence Mobile App Designer Creating basic mobile apps Previewing mobile apps Creating apps with tile pages Creating subpages and navigation pages Using Oracle Business Intelligence Delivers Configuring delivery devices and adding delivery profiles Adding an Alert Section to a dashboard Configuring an Agent Using Analysis and KPI conditions to deliver content with Agents Subscribing to an Agent Administering the Presentation Catalog Copyright 2013, Oracle. All rights reserved. Page 4

14 Oracle BI and catalog security overview Managing security using roles Understanding security inheritance Setting object permissions Setting system privileges Archiving catalog items Working with Oracle BI Briefing Books Copyright 2013, Oracle. All rights reserved. Page 5

15 Oracle University Contact Us: 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 fictitious company's business requirements. Students import schemas, design and build logical business models, and expose business models to users in the Oracle BI user interface. In the process of constructing the repository, students learn how to build physical and logical joins, simple measures, and calculation measures. Students also learn how to validate their 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 logical dimension hierarchies, multiple logical table sources, aggregate tables, partitions, and time series data. Students also learn how to implement Oracle BI Server security, manage Oracle BI Server cache, set up a multiuser development environment, 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, multilingual environments, 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 Server Use the Oracle BI Administration Tool to build, manage, and maintain an Oracle BI repository Build a dimensional business model to address business intelligence requirements Audience Application Developers Business Analysts Business Intelligence Developer Data Modelers Data Warehouse Administrator Data Warehouse Analyst Data Warehouse Developer Reports Developer Prerequisites Required Prerequisites Basic SQL Data warehouse design Database design Dimensional modeling Copyright 2010, Oracle. All rights reserved. Page 1

16 Suggested Prerequisites Oracle BI 11g R1: Create Analyses and Dashboards Course Objectives Build and run analyses to test and validate a repository Build simple and calculated measures for a fact table Create logical dimension hierarchies and level-based measures Model aggregate tables to speed query processing Model partitions and fragments to improve application performance and usability Use variables to streamline administrative tasks and modify metadata content dynamically Use time series functions to support historical time comparison analyses Set up security to authenticate users and assign appropriate permissions and privileges Apply cache management techniques to maintain and enhance query performance Set up query logging for testing and debugging Set up a multi-user development environment Use Administration Tool wizards and utilities to manage, maintain, and enhance repositories Enable usage tracking to track queries and database usage, and improve query performance Perform a patch merge in a development-to-production scenario Configure Oracle BI to support multilingual environments Build the Physical, Business Model and Mapping, and Presentation layers of a repository Course Topics Repository Basics Exploring Oracle BI architecture components Exploring a repository's structure, features, and functions Using the Oracle BI Administration Tool Creating a repository Loading a repository into Oracle BI Server memory Building the Physical Layer of a Repository Importing data sources Setting up connection pool properties Defining keys and joins Examining physical layer object properties Creating alias tables Building the Business Model and Mapping Layer of a Repository Building a business model Building logical tables, columns, and sources Defining logical joins Building measures Examining business model object properties Building the Presentation Layer of a Repository Exploring Presentation layer objects Creating Presentation layer objects Modifying Presentation layer objects Examining Presentation layer object properties Testing and Validating a Repository Copyright 2010, Oracle. All rights reserved. Page 2

17 Checking repository consistency Turning on logging Defining a repository in the initialization file Executing analyses to test a repository Inspecting the query log Managing Logical Table Sources Adding multiple logical table sources to a logical table Specifying logical content Adding Calculations to a Fact Creating new calculation measures based on existing logical columns Creating new calculation measures based on physical columns Creating new calculation measures using the Calculation Wizard Creating measures using functions Working with Logical Dimensions Creating logical dimension hierarchies Creating level-based measures Creating share measures Creating dimension-specific aggregation rules Creating presentation hierarchies Creating parent-child hierarchies Using calculated members Using Aggregates Modeling aggregate tables to improve query performance Setting the number of elements in a hierarchy Testing aggregate navigation Using the Aggregate Persistence Wizard Using Partitions and Fragments Exploring partition types Modeling partitions in an Oracle BI repository Using the Calculation Wizard to create derived measures Using Repository Variables Creating session variables Creating repository variables Creating initialization blocks Using the Variable Manager Using dynamic repository variables as filters Modeling Time Series Data Using time comparisons in business analysis Using Oracle BI time series functions to model time series data Modeling Many-to-Many Relationships Using bridge tables to resolve many-to-many relationships between dimension tables and fact tables Localizing Oracle BI Metadata and Data Localizing repository metadata Copyright 2010, Oracle. All rights reserved. Page 3

18 Localizing Oracle BI data Setting an Implicit Fact Column Adding fact columns automatically to dimension-only queries Ensuring the expected results for dimension-only queries Selecting a predetermined fact table source Specifying a default join path between dimension tables Importing Metadata from Multidimensional Data Sources Importing a multidimensional data source into a repository Incorporating horizontal federation into a business model Incorporating vertical federation into a business model Adding Essbase measures to a relational model Displaying data from multidimensional sources in Oracle BI analyses and dashboards Security Exploring Oracle BI default security settings Creating users and groups Creating application roles Setting up object permissions Setting row-level security (data filters) Setting query limits and timing restrictions Cache Management Restricting tables as non-cacheable Using Cache Manager Inspecting cache reports Purging cache entries Modifying cache parameters and options Seeding the cache Enabling Usage Tracking Setting up the sample usage tracking repository Tracking and storing Oracle BI Server usage at the detailed query level Using usage tracking statistics to optimize query performance and aggregation strategies Analyzing usage results using Oracle BI Answers and other reporting tools Multi-user Development Setting up a multiuser development environment Developing a repository using multiple developers Tracking development project history Configuring Write Back Enabling write back in a repository Creating a write back template Granting write back privileges Enabling write back in an analysis Performing a Patch Merge Comparing repositories Equalizing objects Creating a patch Copyright 2010, Oracle. All rights reserved. Page 4

19 Applying a patch Making merge decisions Copyright 2010, Oracle. All rights reserved. Page 5

20 Oracle University Contact Us: 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, , 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. Audience Application Developers Business Analysts Business Intelligence Developer Delivery End Users Functional Implementer Reports Developer Technical Consultant Copyright 2013, Oracle. All rights reserved. Page 1

21 Course Objectives Schedule 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 11g Course Agenda Overview of Oracle BI Foundation Suite Overview of Oracle Fusion Middleware Overview of Oracle BI EE Evolving role of BI Addressing BI Requirements Functions of Reporting Systems including Challenges BI Publisher as a Strategic Reporting Solution for All Applications BI Publisher Technology and Architecture Functional Components Layout Templates Enterprise Server Architecture and Performance and Scalability Document Generation Process and Output Formats Supported Data Sources Underlying Technology Bursting Overview Internationalization and Language Support Getting Started with BI Publisher Logging In, the Home Page, and Global Header, and Setting Account Preferences Viewing Reports Managing Repository Objects Creating Reports: Workflow Copyright 2013, Oracle. All rights reserved. Page 2

22 Opening Report Editor and Selecting a Data Model Previewing and Configuring Layouts Setting Report Properties Using Excel Analyzer Using Data Model Editor to Create Data Models Based on a SQL Query Data Set Exploring the Schemas Used in the Course Exploring the Data Model Editor UI Examining the Supported Data Sources and Creating a JDBC Connection Defining a JDBC Connection Creating a Simple Data Model Based on a SQL Query Data Set Viewing Sample XML Data Sets Adding Parameters and LOVs to the Query Viewing Reports with Parameters Working with Layout Editor Opening the Layout Editor Navigating and Reviewing the Layout Editor UI Creating a Layout by Using a Basic Template Inserting a Layout Grid Adding a Table, Formatting Columns, Defining Sorts and Groups, and Applying Conditional Formats Inserting and Editing Charts, and Converting Charts to a Pivot Table Adding Repeating Sections, Text Items, and Images Working with Gauges Creating RTF Templates by Using Template Builder Exploring and using Template Builder (in MS Word) Using the BI Publisher Menu Bar Craeting an RTF Template froma Sample, Changing Field Properties, and Previewing Table Data Adding a Chart to an RTF Template Designing an RTF Template for a BI Publisher Report Creating a BI Publisher Report by Using Template Builder Exploring the Basic and Form Field Methods Exploring Advanced RTF Template Techniques Including Conditional Formats, Watermarks, Page-Level Calculations, Ru Working with Style Templates and Sub Templates Explaining Style Templates Creating and Managing Style Templates, and Creating an RTF File and Defining Formatting Styles to Create the Style Te Uploading Localized Version of the RTF Template Associating Style Templates with Reports, Assigning it to RTF Report Layouts, and Creating RTF Templates for Use with Describing Sub Templates, Creating an RTF Sub Template, Main RTF Template, Locally Testing, and Uploading Describing and Defining XSL Sub Templates Creating and Implementing XSL Sub Templates Calling XSL Sub Templates BI Publisher Server: Administration and Security Describing the Administration Page Setting, Viewing, and Updating Data Sources Describing the Security Model for BI Publisher and Oracle Fusion Middleware Describing Groups, Users, Roles, and Permissions Describing Delivery Options Including Print, Fax, , WebDav, HTTP Server, FTP, and CUPS Describing and Configuring BI Publisher Scheduler Copyright 2013, Oracle. All rights reserved. Page 3

23 Describing Runtime Configuration and Properties Integrating with Oracle BI Presentation Services Scheduling and Bursting Reports Scheduling and Describing a Report Job and Related Options Managing and Viewing a Report Job Viewing Report Job History Describing Bursting Adding a Bursting Definition to a Report Performing Translations Describing Translation Types Translating by Using the Localized Template Option Translating by Using the XLIFF Option Managing XLIFF Translations on BI Publisher Server Describing the Overall Translation Process Describing Catalog Translation Exporting and Importing the XLIFF for a Catalog Folder Integrating BI Publisher with Oracle BI Enterprise Edition Configuring Presentation Catalog and Presentation Services Integration Navigating Oracle BI EE Creating a Data Model and Report Based on an Oracle BI Analysis Adding a BI Publisher Report to an Oracle BI EE Dashboard Creating a Data Model and Report Based on a BI Server SQL Query Process Creating Data Models and BI Publisher Reports Based on Other Data Sources Describing the Web Services Data Source Describing the HTTP (XML/RSS Feed) Data Source Explaining Proxy Setting for Web Services and HTTP Data Sources Creating a BI Publisher Report based on an External Web Service Creating a BI Publisher Report based on an HTTP Data Set Creating a BI Publisher Report based on an Excel Spreadsheet Copyright 2013, Oracle. All rights reserved. Page 4

24 Oracle University Contact Us: Oracle Essbase : Calculate Block Storage Databases ( ) Duration: 2 Days What you will learn This Oracle Essbase : Calculate Block Storage Databases ( ) training teaches you the principal techniques and theories for the design of calculations in block storage databases with Essbase Release 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 or Oracle Essbase 11.1.x. Audience Business Intelligence Developer Data Modelers Data Warehouse Administrator Data Warehouse Analyst Data Warehouse Developer Database Administrators Database Designers Technical Consultant Related Training Copyright 2013, Oracle. All rights reserved. Page 1

25 Required Prerequisites Oracle Essbase Bootcamp Course Objectives Gain 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 Overview Essbase Essbase Database Types Business Scenario and Training Environment Overview Block Storage Calculation Overview Data Storage and Calculation Data Storage and Calculation Fundamentals Database Statistics Data Block Creation Database Calculation Process Calculation Script Basics Calculation Script Organization Implementing a Script Development Process Intelligent Calculation Dynamic Calculation Overview About Dynamic Calculation Dynamic Calculation Storage Options Design Considerations for Dynamic Calculation Design Considerations for Rates and Percentages Controlling the Calculation Process Controlling Top-Down Calculation Performance Considerations Creating Complex Conditionals Copyright 2013, Oracle. All rights reserved. Page 2

26 Copying and Clearing Data Copying Data Clearing Data with CLEARDATA Clearing Data with CLEARBLOCK Developing Advanced Calculations Creating Calculation Variables Referencing Members Dynamically Developing Analytic Calculations Typed Measures Overview Creating Typed Measures Calculating with Typed Measures Multidimensional Dynamic Calculations Dynamic Calculation Order Optimization Guidelines Normalizing Data Loading Data to Upper-Level Members Planning Data Normalization Normalizing Rates and Drivers Performing Advanced Allocations Allocating Data Creating Multiple-Database Calculations Appendix: Essbase Architecture Essbase Architecture Overview Essbase Components by Tier Copyright 2013, Oracle. All rights reserved. Page 3

27

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: + 38516306373 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training delivers the

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: +966 12 739 894 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals training is designed to

More information

Oracle Database: SQL and PL/SQL Fundamentals

Oracle Database: SQL and PL/SQL Fundamentals Oracle University Contact Us: 1.800.529.0165 Oracle Database: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn This course is designed to deliver the fundamentals of SQL and PL/SQL along

More information

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW Oracle University Contact Us: 001-855-844-3881 & 001-800-514-06-97 Oracle Database: SQL and PL/SQL Fundamentals NEW Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Oracle BI 11g R1: Build Repositories

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

More information

Oracle BI 11g R1: Create Analyses and Dashboards

Oracle BI 11g R1: Create Analyses and Dashboards Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle BI 11g R1: Create Analyses and Dashboards Duration: 5 Days What you will learn This Oracle BI 11g R1: Create Analyses and

More information

Oracle SQL. Course Summary. Duration. Objectives

Oracle SQL. Course Summary. Duration. Objectives Oracle SQL Course Summary Identify the major structural components of the Oracle Database 11g Create reports of aggregated data Write SELECT statements that include queries Retrieve row and column data

More information

Oracle Database 12c: Introduction to SQL Ed 1.1

Oracle Database 12c: Introduction to SQL Ed 1.1 Oracle University Contact Us: 1.800.529.0165 Oracle Database 12c: Introduction to SQL Ed 1.1 Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

More information

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff

Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff D80198GC10 Oracle Database 12c SQL and Fundamentals Summary Duration Vendor Audience 5 Days Oracle End Users, Developers, Technical Consultants and Support Staff Level Professional Delivery Method Instructor-led

More information

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks

Building Views and Charts in Requests Introduction to Answers views and charts Creating and editing charts Performing common view tasks Oracle Business Intelligence Enterprise Edition (OBIEE) Training: Working with Oracle Business Intelligence Answers Introduction to Oracle BI Answers Working with requests in Oracle BI Answers Using advanced

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training teaches you how to write subqueries,

More information

uncommon thinking ORACLE BUSINESS INTELLIGENCE ENTERPRISE EDITION ONSITE TRAINING OUTLINES

uncommon thinking ORACLE BUSINESS INTELLIGENCE ENTERPRISE EDITION ONSITE TRAINING OUTLINES OBIEE 11G: CREATE ANALYSIS AND DASHBOARDS: 11.1.1.7 DURATION: 4 DAYS Course Description: This course provides step-by-step instructions for creating analyses and dashboards, which compose business intelligence

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Introduction to SQL training

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: +381 11 2016811 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn Understanding the basic concepts of relational databases ensure refined code by developers.

More information

Oracle Database 11g SQL

Oracle Database 11g SQL AO3 - Version: 2 19 June 2016 Oracle Database 11g SQL Oracle Database 11g SQL AO3 - Version: 2 3 days Course Description: This course provides the essential SQL skills that allow developers to write queries

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: +33 15 7602 081 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn This course is available in Training On Demand format This Oracle Database: Program

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then explores the benefits of this

More information

Oracle Database: Develop PL/SQL Program Units

Oracle Database: Develop PL/SQL Program Units Oracle University Contact Us: 1.800.529.0165 Oracle Database: Develop PL/SQL Program Units Duration: 3 Days What you will learn This Oracle Database: Develop PL/SQL Program Units course is designed for

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: 0845 777 7711 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn This course starts with an introduction to PL/SQL and proceeds to list the benefits

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: +52 1 55 8525 3225 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn View a newer version of this course This Oracle Database: Program with PL/SQL

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database technology.

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: 1.800.529.0165 Oracle Database: Program with PL/SQL Duration: 5 Days What you will learn View a newer version of this course /a/b/p/p/b/pulli/lili/lili/lili/lili/lili/lili/lili/lili/lili/lili/lili/li/ul/b/p/p/b/p/a/a/p/

More information

Database Programming with PL/SQL: Learning Objectives

Database Programming with PL/SQL: Learning Objectives Database Programming with PL/SQL: Learning Objectives This course covers PL/SQL, a procedural language extension to SQL. Through an innovative project-based approach, students learn procedural logic constructs

More information

ETL TESTING TRAINING

ETL TESTING TRAINING ETL TESTING TRAINING DURATION 35hrs AVAILABLE BATCHES WEEKDAYS (6.30AM TO 7.30AM) & WEEKENDS (6.30pm TO 8pm) MODE OF TRAINING AVAILABLE ONLINE INSTRUCTOR LED CLASSROOM TRAINING (MARATHAHALLI, BANGALORE)

More information

MOC 20461C: Querying Microsoft SQL Server. Course Overview

MOC 20461C: Querying Microsoft SQL Server. Course Overview MOC 20461C: Querying Microsoft SQL Server Course Overview This course provides students with the knowledge and skills to query Microsoft SQL Server. Students will learn about T-SQL querying, SQL Server

More information

Oracle 10g PL/SQL Training

Oracle 10g PL/SQL Training Oracle 10g PL/SQL Training Course Number: ORCL PS01 Length: 3 Day(s) Certification Exam This course will help you prepare for the following exams: 1Z0 042 1Z0 043 Course Overview PL/SQL is Oracle's Procedural

More information

AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014

AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014 AV-005: Administering and Implementing a Data Warehouse with SQL Server 2014 Career Details Duration 105 hours Prerequisites This career requires that you meet the following prerequisites: Working knowledge

More information

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT

ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT ORACLE 9I / 10G / 11G / PL/SQL COURSE CONTENT INTRODUCTION: Course Objectives I-2 About PL/SQL I-3 PL/SQL Environment I-4 Benefits of PL/SQL I-5 Benefits of Subprograms I-10 Invoking Stored Procedures

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

Course ID#: 1401-801-14-W 35 Hrs. Course Content

Course ID#: 1401-801-14-W 35 Hrs. Course Content Course Content Course Description: This 5-day instructor led course provides students with the technical skills required to write basic Transact- SQL queries for Microsoft SQL Server 2014. This course

More information

Programming with SQL

Programming with SQL Unit 43: Programming with SQL Learning Outcomes A candidate following a programme of learning leading to this unit will be able to: Create queries to retrieve information from relational databases using

More information

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases.

SQL Databases Course. by Applied Technology Research Center. This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. SQL Databases Course by Applied Technology Research Center. 23 September 2015 This course provides training for MySQL, Oracle, SQL Server and PostgreSQL databases. Oracle Topics This Oracle Database: SQL

More information

Oracle 11g PL/SQL training

Oracle 11g PL/SQL training Oracle 11g PL/SQL training Course Highlights This course introduces students to PL/SQL and helps them understand the benefits of this powerful programming language. Students learn to create PL/SQL blocks

More information

Oracle Database 10g: Program with PL/SQL

Oracle Database 10g: Program with PL/SQL Oracle University Contact Us: Local: 1800 425 8877 Intl: +91 80 4108 4700 Oracle Database 10g: Program with PL/SQL Duration: 5 Days What you will learn This course introduces students to PL/SQL and helps

More information

SAP BO 4.1 COURSE CONTENT

SAP BO 4.1 COURSE CONTENT Data warehousing/dimensional modeling/ SAP BW 7.0 Concepts 1. OLTP vs. OLAP 2. Types of OLAP 3. Multi Dimensional Modeling Of SAP BW 7.0 4. SAP BW 7.0 Cubes, DSO s,multi Providers, Infosets 5. Business

More information

Course -Oracle 10g SQL (Exam Code IZ0-047) Session number Module Topics 1 Retrieving Data Using the SQL SELECT Statement

Course -Oracle 10g SQL (Exam Code IZ0-047) Session number Module Topics 1 Retrieving Data Using the SQL SELECT Statement Course -Oracle 10g SQL (Exam Code IZ0-047) Session number Module Topics 1 Retrieving Data Using the SQL SELECT Statement List the capabilities of SQL SELECT statements Execute a basic SELECT statement

More information

SAP BO Course Details

SAP BO Course Details SAP BO Course Details By Besant Technologies Course Name Category Venue SAP BO SAP Besant Technologies No.24, Nagendra Nagar, Velachery Main Road, Address Velachery, Chennai 600 042 Landmark Opposite to

More information

LearnFromGuru Polish your knowledge

LearnFromGuru Polish your knowledge SQL SERVER 2008 R2 /2012 (TSQL/SSIS/ SSRS/ SSAS BI Developer TRAINING) Module: I T-SQL Programming and Database Design An Overview of SQL Server 2008 R2 / 2012 Available Features and Tools New Capabilities

More information

Oracle Database 11g: Program with PL/SQL

Oracle Database 11g: Program with PL/SQL Oracle University Entre em contato: 0800 891 6502 Oracle Database 11g: Program with PL/SQL Duração: 5 Dias Objetivos do Curso This course introduces students to PL/SQL and helps them understand the benefits

More information

Data Integration and ETL with Oracle Warehouse Builder NEW

Data Integration and ETL with Oracle Warehouse Builder NEW Oracle University Appelez-nous: +33 (0) 1 57 60 20 81 Data Integration and ETL with Oracle Warehouse Builder NEW Durée: 5 Jours Description In this 5-day hands-on course, students explore the concepts,

More information

Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours

Querying Microsoft SQL Server Course M20461 5 Day(s) 30:00 Hours Área de formação Plataforma e Tecnologias de Informação Querying Microsoft SQL Introduction This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL

More information

Oracle Database 11g: SQL Tuning Workshop

Oracle Database 11g: SQL Tuning Workshop Oracle University Contact Us: + 38516306373 Oracle Database 11g: SQL Tuning Workshop Duration: 3 Days What you will learn This Oracle Database 11g: SQL Tuning Workshop Release 2 training assists database

More information

Querying Microsoft SQL Server 20461C; 5 days

Querying Microsoft SQL Server 20461C; 5 days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Querying Microsoft SQL Server 20461C; 5 days Course Description This 5-day

More information

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX

J j enterpririse. Oracle Application Express 3. Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Oracle Application Express 3 The Essentials and More Develop Native Oracle database-centric web applications quickly and easily with Oracle APEX Arie Geller Matthew Lyon J j enterpririse PUBLISHING BIRMINGHAM

More information

Data Integration and ETL with Oracle Warehouse Builder: Part 1

Data Integration and ETL with Oracle Warehouse Builder: Part 1 Oracle University Contact Us: + 38516306373 Data Integration and ETL with Oracle Warehouse Builder: Part 1 Duration: 3 Days What you will learn This Data Integration and ETL with Oracle Warehouse Builder:

More information

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features

<Insert Picture Here> Oracle SQL Developer 3.0: Overview and New Features 1 Oracle SQL Developer 3.0: Overview and New Features Sue Harper Senior Principal Product Manager The following is intended to outline our general product direction. It is intended

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Course 20461C: Querying Microsoft SQL Server Module 1: Introduction to Microsoft SQL Server 2014 This module introduces the SQL Server platform and major tools. It discusses editions, versions, tools used

More information

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours

Course 20461C: Querying Microsoft SQL Server Duration: 35 hours Course 20461C: Querying Microsoft SQL Server Duration: 35 hours About this Course This course is the foundation for all SQL Server-related disciplines; namely, Database Administration, Database Development

More information

Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts

Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts D80186GC10 Oracle Database: Program with Summary Duration Vendor Audience 5 Days Oracle Developers, Technical Consultants, Database Administrators and System Analysts Level Professional Technology Oracle

More information

Querying Microsoft SQL Server 2012

Querying Microsoft SQL Server 2012 Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 200 Technology: Microsoft SQL Server 2012 Type: Course Delivery Method: Instructor-led

More information

D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to:

D61830GC30. MySQL for Developers. Summary. Introduction. Prerequisites. At Course completion After completing this course, students will be able to: D61830GC30 for Developers Summary Duration Vendor Audience 5 Days Oracle Database Administrators, Developers, Web Administrators Level Technology Professional Oracle 5.6 Delivery Method Instructor-led

More information

Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals

Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Course 10774A: Querying Microsoft SQL Server 2012 Length: 5 Days Published: May 25, 2012 Language(s): English Audience(s): IT Professionals Overview About this Course Level: 200 Technology: Microsoft SQL

More information

Jet Data Manager 2012 User Guide

Jet Data Manager 2012 User Guide Jet Data Manager 2012 User Guide Welcome This documentation provides descriptions of the concepts and features of the Jet Data Manager and how to use with them. With the Jet Data Manager you can transform

More information

Course 10774A: Querying Microsoft SQL Server 2012

Course 10774A: Querying Microsoft SQL Server 2012 Course 10774A: Querying Microsoft SQL Server 2012 About this Course This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft

More information

Instant SQL Programming

Instant SQL Programming Instant SQL Programming Joe Celko Wrox Press Ltd. INSTANT Table of Contents Introduction 1 What Can SQL Do for Me? 2 Who Should Use This Book? 2 How To Use This Book 3 What You Should Know 3 Conventions

More information

<Insert Picture Here> Oracle BI Standard Edition One The Right BI Foundation for the Emerging Enterprise

<Insert Picture Here> Oracle BI Standard Edition One The Right BI Foundation for the Emerging Enterprise Oracle BI Standard Edition One The Right BI Foundation for the Emerging Enterprise Business Intelligence is the #1 Priority the most important technology in 2007 is business intelligence

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

Introduction to Querying & Reporting with SQL Server

Introduction to Querying & Reporting with SQL Server 1800 ULEARN (853 276) www.ddls.com.au Introduction to Querying & Reporting with SQL Server Length 5 days Price $4169.00 (inc GST) Overview This five-day instructor led course provides students with the

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

FileMaker 12. ODBC and JDBC Guide

FileMaker 12. ODBC and JDBC Guide FileMaker 12 ODBC and JDBC Guide 2004 2012 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and Bento are trademarks of FileMaker, Inc.

More information

Introduction to Oracle Business Intelligence Standard Edition One. Mike Donohue Senior Manager, Product Management Oracle Business Intelligence

Introduction to Oracle Business Intelligence Standard Edition One. Mike Donohue Senior Manager, Product Management Oracle Business Intelligence Introduction to Oracle Business Intelligence Standard Edition One Mike Donohue Senior Manager, Product Management Oracle Business Intelligence The following is intended to outline our general product direction.

More information

MOC 20461 QUERYING MICROSOFT SQL SERVER

MOC 20461 QUERYING MICROSOFT SQL SERVER ONE STEP AHEAD. MOC 20461 QUERYING MICROSOFT SQL SERVER Length: 5 days Level: 300 Technology: Microsoft SQL Server Delivery Method: Instructor-led (classroom) COURSE OUTLINE Module 1: Introduction to Microsoft

More information

Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio

Introducing Microsoft SQL Server 2012 Getting Started with SQL Server Management Studio Querying Microsoft SQL Server 2012 Microsoft Course 10774 This 5-day instructor led course provides students with the technical skills required to write basic Transact-SQL queries for Microsoft SQL Server

More information

MicroStrategy Course Catalog

MicroStrategy Course Catalog MicroStrategy Course Catalog 1 microstrategy.com/education 3 MicroStrategy course matrix 4 MicroStrategy 9 8 MicroStrategy 10 table of contents MicroStrategy course matrix MICROSTRATEGY 9 MICROSTRATEGY

More information

SQL Server 2012 Business Intelligence Boot Camp

SQL Server 2012 Business Intelligence Boot Camp SQL Server 2012 Business Intelligence Boot Camp Length: 5 Days Technology: Microsoft SQL Server 2012 Delivery Method: Instructor-led (classroom) About this Course Data warehousing is a solution organizations

More information

Oracle Business Intelligence EE. Prab h akar A lu ri

Oracle Business Intelligence EE. Prab h akar A lu ri Oracle Business Intelligence EE Prab h akar A lu ri Agenda 1.Overview 2.Components 3.Oracle Business Intelligence Server 4.Oracle Business Intelligence Dashboards 5.Oracle Business Intelligence Answers

More information

Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services

Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services Course 6234A: Implementing and Maintaining Microsoft SQL Server 2008 Analysis Services Length: Delivery Method: 3 Days Instructor-led (classroom) About this Course Elements of this syllabus are subject

More information

FileMaker 11. ODBC and JDBC Guide

FileMaker 11. ODBC and JDBC Guide FileMaker 11 ODBC and JDBC Guide 2004 2010 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker is a trademark of FileMaker, Inc. registered

More information

SQL Server Administrator Introduction - 3 Days Objectives

SQL Server Administrator Introduction - 3 Days Objectives SQL Server Administrator Introduction - 3 Days INTRODUCTION TO MICROSOFT SQL SERVER Exploring the components of SQL Server Identifying SQL Server administration tasks INSTALLING SQL SERVER Identifying

More information

ORACLE BUSINESS INTELLIGENCE FOUNDATION SUITE 11g WHAT S NEW

ORACLE BUSINESS INTELLIGENCE FOUNDATION SUITE 11g WHAT S NEW ORACLE BUSINESS INTELLIGENCEFOUNDATION SUITE 11g DATA SHEET Disclaimer: This document is for informational purposes. It is not a commitment to deliver any material, code, or functionality, and should not

More information

DBMS / Business Intelligence, SQL Server

DBMS / Business Intelligence, SQL Server DBMS / Business Intelligence, SQL Server Orsys, with 30 years of experience, is providing high quality, independant State of the Art seminars and hands-on courses corresponding to the needs of IT professionals.

More information

Oracle Business Intelligence Server Administration Guide. Version 10.1.3.2 December 2006

Oracle Business Intelligence Server Administration Guide. Version 10.1.3.2 December 2006 Oracle Business Intelligence Server Administration Guide Version 10.1.3.2 December 2006 Part Number: B31770-01 Copyright 2006, Oracle. All rights reserved. The Programs (which include both the software

More information

Oracle Business Intelligence 11g OPN Advanced Workshop

Oracle Business Intelligence 11g OPN Advanced Workshop Oracle Business Intelligence 11g OPN Advanced Workshop Lab Book OPN: Oracle Business Intelligence 11g Advanced Workshop OPN Workshop: BI 11g Advanced Seite 1 Authors Revision Jignesh Mehta Naresh Nemani

More information

Netezza SQL Class Outline

Netezza SQL Class Outline Netezza SQL Class Outline CoffingDW education has been customized for every customer for the past 20 years. Our classes can be taught either on site or remotely via the internet. Education Contact: John

More information

SQL SERVER TRAINING CURRICULUM

SQL SERVER TRAINING CURRICULUM SQL SERVER TRAINING CURRICULUM Complete SQL Server 2000/2005 for Developers Management and Administration Overview Creating databases and transaction logs Managing the file system Server and database configuration

More information

ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process

ORACLE OLAP. Oracle OLAP is embedded in the Oracle Database kernel and runs in the same database process ORACLE OLAP KEY FEATURES AND BENEFITS FAST ANSWERS TO TOUGH QUESTIONS EASILY KEY FEATURES & BENEFITS World class analytic engine Superior query performance Simple SQL access to advanced analytics Enhanced

More information

Oracle Business Intelligence Foundation Suite 11g Essentials Exam Study Guide

Oracle Business Intelligence Foundation Suite 11g Essentials Exam Study Guide Oracle Business Intelligence Foundation Suite 11g Essentials Exam Study Guide Joshua Jeyasingh Senior Technical Account Manager WW A&C Partner Enablement Objective & Audience Objective Help you prepare

More information

Overview of Creating Analyses and Dashboards in OBIEE 11g

Overview of Creating Analyses and Dashboards in OBIEE 11g Overview of Creating Analyses and Dashboards in OBIEE 11g Venkatakrishnan Srinivasan, Principal Consultant, Rittman Mead AIOUG Sangam Conference, Bangalore December 2011 Introductions Venkatakrishnan Srinivasan

More information

OBIEE 11g : Answers, Dashboards & More

OBIEE 11g : Answers, Dashboards & More OBIEE 11g : Answers, Dashboards & More Mark Rittman, Director, Rittman Mead Oracle Open World, San Francisco, September 2010 Introductions Mark Rittman, Co-Founder of Rittman Mead Oracle ACE Director,

More information

SAS BI Course Content; Introduction to DWH / BI Concepts

SAS BI Course Content; Introduction to DWH / BI Concepts SAS BI Course Content; Introduction to DWH / BI Concepts SAS Web Report Studio 4.2 SAS EG 4.2 SAS Information Delivery Portal 4.2 SAS Data Integration Studio 4.2 SAS BI Dashboard 4.2 SAS Management Console

More information

SQL Server 2012 End-to-End Business Intelligence Workshop

SQL Server 2012 End-to-End Business Intelligence Workshop USA Operations 11921 Freedom Drive Two Fountain Square Suite 550 Reston, VA 20190 solidq.com 800.757.6543 Office 206.203.6112 Fax info@solidq.com SQL Server 2012 End-to-End Business Intelligence Workshop

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

Business Objects Online training Contents SAP BUSINESS OBJECTS 4.0/XI 3.1. We provide online instructor led Business Objects Training.

Business Objects Online training Contents SAP BUSINESS OBJECTS 4.0/XI 3.1. We provide online instructor led Business Objects Training. Business Objects Online training Contents SAP BUSINESS OBJECTS 4.0/XI 3.1 We provide online instructor led Business Objects Training. BUSINESS OBJECTS XI 3.1 TRAINING CONTENT: Oracle (Basics) Universe

More information

Microsoft SQL Business Intelligence Boot Camp

Microsoft SQL Business Intelligence Boot Camp To register or for more information call our office (208) 898-9036 or email register@leapfoxlearning.com Microsoft SQL Business Intelligence Boot Camp 3 classes 1 Week! Business Intelligence is HOT! If

More information

OBIEE 11g Data Modeling Best Practices

OBIEE 11g Data Modeling Best Practices OBIEE 11g Data Modeling Best Practices Mark Rittman, Director, Rittman Mead Oracle Open World 2010, San Francisco, September 2010 Introductions Mark Rittman, Co-Founder of Rittman Mead Oracle ACE Director,

More information

Course duration: 45 Hrs Class duration: 1-1.5hrs

Course duration: 45 Hrs Class duration: 1-1.5hrs Course duration: 45 Hrs Class duration: 1-1.5hrs USA : +1 9099998808 India : +91-9986411022 mail : ithuntersolutions@gmail.com SAP BO 4.0 Introduction Data warehouse concepts Difference between Versions

More information

OBIEE DEVELOPER RESUME

OBIEE DEVELOPER RESUME 1 of 5 05/01/2015 13:14 OBIEE DEVELOPER RESUME Java Developers/Architects Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide candidates on a Contract basis.

More information

Saskatoon Business College Corporate Training Centre 244-6340 corporate@sbccollege.ca www.sbccollege.ca/corporate

Saskatoon Business College Corporate Training Centre 244-6340 corporate@sbccollege.ca www.sbccollege.ca/corporate Microsoft Certified Instructor led: Querying Microsoft SQL Server (Course 20461C) Date: October 19 23, 2015 Course Length: 5 day (8:30am 4:30pm) Course Cost: $2400 + GST (Books included) About this Course

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

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

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

More information

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach

SQL Server. 2012 for developers. murach's TRAINING & REFERENCE. Bryan Syverson. Mike Murach & Associates, Inc. Joel Murach TRAINING & REFERENCE murach's SQL Server 2012 for developers Bryan Syverson Joel Murach Mike Murach & Associates, Inc. 4340 N. Knoll Ave. Fresno, CA 93722 www.murach.com murachbooks@murach.com Expanded

More information

SSIS Training: Introduction to SQL Server Integration Services Duration: 3 days

SSIS Training: Introduction to SQL Server Integration Services Duration: 3 days SSIS Training: Introduction to SQL Server Integration Services Duration: 3 days SSIS Training Prerequisites All SSIS training attendees should have prior experience working with SQL Server. Hands-on/Lecture

More information

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc.

Oracle9i Data Warehouse Review. Robert F. Edwards Dulcian, Inc. Oracle9i Data Warehouse Review Robert F. Edwards Dulcian, Inc. Agenda Oracle9i Server OLAP Server Analytical SQL Data Mining ETL Warehouse Builder 3i Oracle 9i Server Overview 9i Server = Data Warehouse

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Data Modeling Guide for Oracle Business Intelligence Publisher 11g Release 1 (11.1.1) E22258-05 July 2014 Explains how to retrieve and structure data from a variety of sources

More information

Microsoft End to End Business Intelligence Boot Camp

Microsoft End to End Business Intelligence Boot Camp Microsoft End to End Business Intelligence Boot Camp Längd: 5 Days Kurskod: M55045 Sammanfattning: This five-day instructor-led course is a complete high-level tour of the Microsoft Business Intelligence

More information

COURSE SYLLABUS COURSE TITLE:

COURSE SYLLABUS COURSE TITLE: 1 COURSE SYLLABUS COURSE TITLE: FORMAT: CERTIFICATION EXAMS: 55043AC Microsoft End to End Business Intelligence Boot Camp Instructor-led None This course syllabus should be used to determine whether the

More information

Oracle Warehouse Builder 10g

Oracle Warehouse Builder 10g Oracle Warehouse Builder 10g Architectural White paper February 2004 Table of contents INTRODUCTION... 3 OVERVIEW... 4 THE DESIGN COMPONENT... 4 THE RUNTIME COMPONENT... 5 THE DESIGN ARCHITECTURE... 6

More information

2. Metadata Modeling Best Practices with Cognos Framework Manager

2. Metadata Modeling Best Practices with Cognos Framework Manager IBM Cognos 10.1 DWH Basics 1 Cognos System Administration 2 Metadata Modeling Best Practices With Cognos Framework Manager 3 OLAP Modeling With Cognos Transformer (Power Play Tranformer) 4 Multidimensional

More information

Migrating a Discoverer System to Oracle Business Intelligence Enterprise Edition

Migrating a Discoverer System to Oracle Business Intelligence Enterprise Edition Migrating a Discoverer System to Oracle Business Intelligence Enterprise Edition Milena Gerova President Bulgarian Oracle User Group mgerova@technologica.com Who am I Project Manager in TechnoLogica Ltd

More information

Reporting. Microsoft Dynamics GP 2010. enterpri se. Dynamics GP. Christopher Liley. Create and manage business reports with.

Reporting. Microsoft Dynamics GP 2010. enterpri se. Dynamics GP. Christopher Liley. Create and manage business reports with. Microsoft Dynamics GP 2010 Reporting Create and manage business reports with Dynamics GP David Duncan Christopher Liley [ PUBLISHING J enterpri se - BIRMINGHAM MUMBAI Preface 1 Chapter 1: Meeting the Reporting

More information