DEVELOPING APPLICATIONS with the CORE ADF STACK Peter Koletzke, Quovera

Total Page:16

File Type:pdf, Size:1020Kb

DEVELOPING APPLICATIONS with the CORE ADF STACK Peter Koletzke, Quovera Note: These slides are an expanded version of the slides presented at the conference. Survey • Job responsibilities? Oracle ADF On-Ramp: – DBA, developer Developing Applications • Languages? With the Core ADF Stack – PL/SQL, Java – Other • Tools? Peter Koletzke – APEX Technical Director & Principal Instructor – Developer Forms/Reports – JDeveloper – Eclipse, NetBeans The white paper – Other follows these slides in this same file. 2 Agenda On the Positive Side… • What is ADF? If we do not find anything pleasant, at least • ADF Business Services we shall find something new. Si nous ne trouvons pas des choses • ADF Model, View, and Controller agréables, nous trouverons du moins des choses nouvelles. Slides and white paper are Screenshots are be available on the OOW 11g unless —Voltaire (1694-1778), Candide and Quovera websites. marked as 12c 3 4 Oracle Application Development ADF Architecture Framework (ADF) Application Client View Web Client •A framework is a prebuilt service for solving a particular problem – like access to the ADFdi (Excel) ADF Mobile JSF database ADF JClient JSP ADF Faces RC – Code libraries and standards support the framework – Implements code reuse and best practices – An architecture with code libraries Controller ADF Struts JSF •ADF is a meta-framework Controller – A wrapper for other frameworks, JDev 10g and later – Provides a consistent developer experience Model • Based on Model-View-Controller ADF Bindings design pattern (SmallTalk, Java EE) ADF Data Controls Business Services EJB Session Web ADF Business Java Essbase Beans Services Components Classes 5 Which ADF Technologies to Use? ADF Essentials • An example: Fusion Applications (Oracle • No-license-fee version of ADF applications suite) – Runs on the public domain app server, • Core technology stack used for Fusion Apps is: Glassfish, not WebLogic Server – ADF Business Components – ADF Faces Rich Client • Works in JDeveloper – ADF Model • Works in Eclipse – ADF Controller • Other high-level technologies – Through Oracle Enterprise Pack for or strategies also used Eclipse – SOA, ESB, Business Rules, • More information on OTN WebCenter, BPM, BPA, BAM – www.oracle.com/technetwork/developer- – Need to consider those, too, Out of tools/adf/overview/adfessentialsfaq-1837249.pdf at the architectural level scope 7 8 Mobile Application Framework Where Do The Core Technologies End Up? • Similar ADF principles and development methods – Business services Database access – Pages (features) with components & SOA endpoints ADF – Task flows Faces ADF BC • Supports iOS and Android UI rendering Departments • Use local services like camera & contacts ADF Model ADF Employees • OTN demo video and ADF Academy video Controller www.oracle.com/technetwork/developer-tools/maf Binding data Page flow and task flow to items 9 Demo 10 Which Languages Do You Use? How Much of Each Do You Use? 1. Java Language (Use) Level Primary Use Needed – All important programmatic code Java Basic Business components code for validation and – Think “trigger code” as in Oracle Forms (frameworks such as special handling of model objects, as well as coding 2. XML ADF Faces) conditional page flow. HTML Java Expert Supplementing or replacing functionality supplied by – The components rely on XML (extending framework the framework. This requires research into the • Property editors create it for you features) framework’s capabilities and architecture. XML Basic The JSF tags and the HTML renderer take care of 3. JavaScript and Cascading Style Sheets the HTML for you. XML is used for JSF JSP files – Add functionality to HTML pages JavaScript Basic/None Providing customized user interaction functionality, – Usually the components do this work for you for example, special handling of a checkbox 4. Expression Language selection. Cascading Style Basic/None Developing skins for a consistent look and feel. If – Used in JSF binding properties Sheets you use prebuilt look-and-feel templates, no CSS 5. Groovy coding is needed. and Expression Language Basic/ Supplying data to components from properties or – ADF BC scripting SQL! Intermediate methods in the application. Groovy Basic Expressions for ADF Business Components 11 Agenda The World View • What is ADF? In this best of all possible worlds ... • ADF Business Services everything is for the best. Dans ce meilleur • ADF Model, View, and Controller des mondes possibles ... tout est au mieux. —Voltaire (1694-1778), Candide 13 14 ADF Business Components More About ADF BC • ADF BC: an option in the Business • Various component types, e.g., Services layer of ADF – View objects: define queries • Persistence: storing data in a database – Entity objects: define insert-update- • O/R mapping: Translates relational database thingies to object-oriented (Java) delete (“DML”) whatsits – View links: view object relationships • Handles JDBC mechanics – Associations: entity object links – Creates SQL and handles results – Application modules: Define the data • Primarily declarative models and the database transaction – XML source code to define the • It does not create user interfaces use of framework classes 15 16 Sample ADF BC Development View Object Code View Object = SELECT statement View Attribute = Column in query <ViewObject <Attribute xmlns="http://xmlns.oracle.com/bc4j" Name="EmployeeId" Name="AllEmployees" IsNotNull="true" Version="11.1.1.53.41" Precision="6" SelectList="Employees.EMPLOYEE_ID, Scale="0" Employees.FIRST_NAME, ColumnName="EMPLOYEE_ID" Employees.LAST_NAME, SQLType="NUMERIC" Employees.JOB_ID, Type="oracle.jbo.domain.Number" Employees.EMAIL, ColumnType="NUMBER" Employees.HIRE_DATE, TableName="EMPLOYEES" Departments.DEPARTMENT_NAME, PrimaryKey="true"> Departments.DEPARTMENT_ID, <DesignTime> Departments.LOCATION_ID" <Attr Name="_DisplaySize" FromList="DEPARTMENTS Departments, Value="22"/> EMPLOYEES Employees" </DesignTime> Where="Departments.MANAGER_ID = </Attribute> Employees.EMPLOYEE_ID" <Attribute BindingStyle="OracleName" Name="FirstName" CustomQuery="false" Precision="20" PageIterMode="Full" ColumnName="FIRST_NAME" UseGlueCode="false"> ... ... Entity object editors Demo 18 List-of-Values (LOV) VO Editor – LOV Subtab • Defined for an view object attribute • Associate a query (view object) with the attribute • Set up is declarative – Start in the view object editor • UI code will display this attribute specially – Pulldown list item loaded with values – Popup list-of-values dialog 19 20 Create List of Values View Criteria • Used for queries • View Object Editor – 11g Query page – 12c VC page • View Criteria dialog At runtime – Defines the WHERE clause declaratively – Bind variables are optional 21 22 View Criteria in the DCP Declarative Validation Rules • Data Controls panel lists • Simple rules written on the entity object the defined criteria • Method 1 • You can drag and drop – Attributes tab a view criteria onto – Validation a JSF page Rules subtab • Method 2 – Business Rules tab • Components are added for each – Attribute or attribute in the view criteria entity level 23 24 Declarative Validation Benefits UI Hints • Quick validation on the app server side • A.k.a., control hints • No Java coding! • UI definitions stored in the entity object or view object definitions • Add a friendlier message for ADF BC-level errors (e.g., length) – Universal to all UIs created from those EOs or VOs • Messages stored in a message bundle file – Provides consistency that you can internationalize – “Set it and forget it” • All UIs built from the entity object will contain the same validation • Can put the hints on either EO or VO – Like a trigger in the database – Rule of thumb: use the entity object UI hints whenever possible • You need to decide where to place – Override on view object level if business rules code needed 25 26 Setting UI Hints Agenda • In Entity Object editor, select attribute • What is ADF? and click the UI Hints tab in the Property Inspector • ADF Business Services • OR View Object editor Attributes • ADF ViewView,, Model, and Controller tab, UI Hints subtab 27 28 ADF Faces Rich Client Overview ADF Faces RC Features • Fits into the View layer of ADF • Changeable “skins” • History: – Common look-and-feel characteristics – ADF UIX ADF Faces Apache Trinidad – Skin editor in JDev 11.1.2 and beyond – ADF Faces ADF Faces RC • Layout management features • Built on top of JSF APIs • Extensive set of properties • Deployable on any 1.2 implementation of JSF – Declarative access to application metadata • Support for pop-ups and dialogs – Properties can reference dynamic values using • ADF model support out-of-the-box Really Expression Language • Data Visualization Tools (DVT) rich! • Template support components • Declarative AJAX – Charts, Gantt, Pivot, Maps, Hierarchy – Property-driven 29 30 Some Components Sample ADF Faces Development af:inputText af:button af:link (with icon) af:inputListOfValues af:commandMenuItem af:selectOneChoice af:inputDate af:selectBooleanCheckbox 31 Demo 32 ADF Faces JSF Snippet Agenda <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.0" xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"> ... <af:panelStretchLayout styleClass="AFVisualRoot" topHeight="105px" bottomHeight="20px"> • What is ADF? <f:facet name="top"> <af:panelBorderLayout> <f:facet name="start"> <af:image source="/images/tuhra.gif" shortDesc="TUHRA Logo"/> </f:facet> • ADF Business Services <f:facet name="end"> <af:panelGroupLayout layout="horizontal" halign="right" valign="bottom"> <af:commandImageLink
Recommended publications
  • Maksym Govorischev
    Maksym Govorischev E-mail : [email protected] Skills & Tools Programming and Scripting Languages: Java, Groovy, Scala Programming metodologies: OOP, Functional Programming, Design Patterns, REST Technologies and Frameworks: - Application development: Java SE 8 Spring Framework(Core, MVC, Security, Integration) Java EE 6 JPA/Hibernate - Database development: SQL NoSQL solutions - MongoDB, OrientDB, Cassandra - Frontent development: HTML, CSS (basic) Javascript Frameworks: JQuery, Knockout - Build tools: Gradle Maven Ant - Version Control Systems: Git SVN Project Experience Project: JUL, 2016 - OCT, 2016 Project Role: Senior Developer Description: Project's aim was essentially to create a microservices architecture blueprint, incorporating business agnostic integrations with various third-party Ecommerce, Social, IoT and Machine Learning solutions, orchestrating them into single coherent system and allowing a particular business to quickly build rich online experience with discussions, IoT support and Maksym Govorischev 1 recommendations engine, by just adding business specific services layer on top of accelerator. Participation: Played a Key developer role to implement integration with IoT platform (AWS IoT) and recommendation engine (Prediction IO), by building corresponding integration microservices. Tools: Maven, GitLab, SonarQube, Jenkins, Docker, PostgreSQL, Cassandra, Prediction IO Technologies: Java 8, Scala, Spring Boot, REST, Netflix Zuul, Netflix Eureka, Hystrix Project: Office Space Management Portal DEC, 2015 - FEB, 2016
    [Show full text]
  • Hyperion Essbase – System 9 Installation Guide, 9.3.1
    HYPERION® ESSBASE® – SYSTEM 9 RELEASE 9.3.1 INSTALLATION GUIDE FOR UNIX Essbase Installation Guide for UNIX, 9.3.1 Copyright © 1998, 2008, Oracle and/or its affiliates. All rights reserved. Authors: Essbase Information Development The Programs (which include both the software and documentation) contain proprietary information; they are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright, patent, and other intellectual and industrial property laws. Reverse engineering, disassembly, or decompilation of the Programs, except to the extent required to obtain interoperability with other independently created software or as specified by law, is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. This document is not warranted to be error-free. Except as may be expressly permitted in your license agreement for these Programs, no part of these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose. If the Programs are delivered to the United States Government or anyone licensing or using the Programs on behalf of the United States Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the Programs, including documentation and technical data, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement, and, to the extent applicable, the additional rights set forth in FAR 52.227-19, Commercial Computer Software--Restricted Rights (June 1987).
    [Show full text]
  • Getting Started with Oracle Essbase
    Oracle® Essbase Getting Started with Oracle Essbase Release 19.3 F17138-01 September 2019 Oracle Essbase Getting Started with Oracle Essbase, Release 19.3 F17138-01 Copyright © 2019, Oracle and/or its affiliates. All rights reserved. Primary Authors: (primary author) Ari Gerber, (primary author) Contributing Authors: (contributing author), (contributing author) Contributors: (contributor), (contributor) This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish, or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this is software or related documentation that is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, then the following notice is applicable: U.S. GOVERNMENT END USERS: Oracle programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, delivered to U.S. Government end users are "commercial computer software" pursuant to the applicable Federal Acquisition Regulation and agency- specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the programs, including any operating system, integrated software, any programs installed on the hardware, and/or documentation, shall be subject to license terms and license restrictions applicable to the programs.
    [Show full text]
  • Essbase and HFM Performance Tuning
    Page 1 of 37 | CONFIDENTIAL When it comes to on-prem tools, infrastructure is probably the most important topic. Ensuring that your tool is tuned, configured, and optimized is key to getting the best possible ROI. However, infrastructure is a complex topic, and it’s easy to miss steps that will make your tool run smoother. That’s why we’ve compiled this ebook with the help of our infrastructure experts. (Unfortunately, it’s nearly impossible to put decades of experience into one ebook — so, if you have any further questions, simply drop us a line.) We’ll cover the good, the bad, and the ugly when it comes to Oracle EPM infrastructure. You’ll learn best practices, mistakes to avoid, and advanced tutorials and tips to help you optimize your various Hyperion tools. Here’s what to expect: I. Best Practices 1. Basic Performance Tuning and Troubleshooting 2. Keeping Up with Essbase and HFM Performance Tuning II. Common Mistakes to Avoid 1. Worst Practices in Planning and Essbase 2. Worst Practices in HFM 3. Worst Practices in Security III. Advanced Tips & Tutorials 1. Essbase 11.1.2.x — Changing Essbase ODL Logging Levels 2. Disabling Implied Share for an Essbase Application 3. EPM Client Cert Authentication 4. Calculations Using Dates Stored in Planning 5. Error Connecting to Planning Application from Smart View 6. Using the @CURRMBR Function 7. Essbase BSO Parallel Calculation and Calculator Cache 8. Zero Based Budgeting (ZBB) Considerations within Hyperion Planning 9. EPM 11.1.2.x Essbase — DATAEXPORT Calc Command and CALCLOCKBLOCK/LOCKBLOCK 10. EPM 11.1.2.x — Planning/PBCS Best Practices for BSO Business Rule Optimization 11.
    [Show full text]
  • Oracle Exalytics: Engineered for Speed-Of-Thought Analytics
    Database Systems Journal vol. II, no. 4/2011 3 Oracle Exalytics: Engineered for Speed-of-Thought Analytics Gabriela GLIGOR, Silviu TEODORU Oracle Romania [email protected]; [email protected] One of the biggest product announcements at 2011's Oracle OpenWorld user conference was Oracle Exalytics In-Memory Machine, the latest addition to the "Exa"-branded suite of Oracle-Sun engineered software-hardware systems. Analytics is all about gaining insights from the data for better decision making. However, the vision of delivering fast, interactive, insightful analytics has remained elusive for most organizations. Most enterprise IT organizations continue to struggle to deliver actionable analytics due to time-sensitive, sprawling requirements and ever tightening budgets. The issue is further exasperated by the fact that most enterprise analytics solutions require dealing with a number of hardware, software, storage and networking vendors and precious resources are wasted integrating the hardware and software components to deliver a complete analytical solution. Oracle Exalytics Business Intelligence Machine is the world’s first engineered system specifically designed to deliver high performance analysis, modeling and planning. Built using industry-standard hardware, market-leading business intelligence software and in- memory database technology, Oracle Exalytics is an optimized system that delivers answers to all your business questions with unmatched speed, intelligence, simplicity and manageability. Keywords: engineered system, Business Intelligence, analytics, OLAP, architecture Introduction almost instantaneously. Oracle claims that 1 The primary design principle of Oracle the algorithmic speed of the system means Exalytics is to enable fast and easy ad hoc it can respond to queries as they are being analysis across large end-user communities typed – which is, in many ways, similar to using an in-memory processing engine.
    [Show full text]
  • The Door to Data Clarity About Interrel
    The door to data clarity About interRel Our goal is to build strong, collaborative connections with our clients to help them glean meaningful insights from their data analytics that ultimately drives improved business performance. OUR MISSION: To leave the world a smarter place than we found it. Oracle Analytics Partner of the Year Upcoming Webcasts ESSBASE IS NOT DEAD: EXCITING FEATURES FOR ON-PREM ESSBASE ESSBASE CUBE BUILDER: IN VERSION 19C GO FROM SPREADSHEET TO ESSBASE TO DATA VISUALIZATION IN 5 MINUTES OR LESS 3-13 3-4 3-18 3-6 2-26 3-11 3-25 STICKING WITH HYPERION DEEP DIVE: FREE FORM PLANNING 101: PLANNING? UNDERSTANDING FINANCIAL HOW TO BUILD ESSBASE CUBES IN HOW TO SUSTAIN, CONSOLIDATION, CLOSE APPLICATION FREE FORM PLANNING EVOLVE AND GROW IN 2020 AND DIMENSION DESIGN Register Today. Use Discount Code IRC20 to get $100 off! Play It Forward Videos to expand what you’ve learned here • Product Introductions • New Features in Oracle Analytics • Cutting-Edge Cloud updates • Expert-level videos for BI gurus • Technical Reference in video form • To experience the education revolution first-hand, join our community at epm.bi/videos Best Selling Hyperion Technical Book Series Want to learn more about interRel Consulting, Assessment, Training and Support services? Contact us at epm.bi/LearnMore Defining Your Data Integration Strategy for 2020: Which Tool Should I Use? Questions to Determine the Best DI Strategy • What are the Oracle EPM and BI solutions utilized? • What are the sources of data? • What are the targets of data? • On Prem?
    [Show full text]
  • Water and Power Conservation ... a Way of Life
    ANTONIO R. VlLLARAlGOSA Commission RONALD O. NICHOLS General Mal/agel' ~"aynr THOMAS S. SAYLES, President ERIC HOLOMAN, Vice-I'''''ideJl/ CHRlSTlNAE. NOONAN JONATHAN PAR FREY BARBARA E. MOSCHOS,secreIO>J' July 21,2011 The Honorable City Council City of Las Angeles Room 395, City Hall Los Angeles, California 90012 Hon-orable Members: Subject: Amendment No.1 Agreement No. 47446-6 with Oracle America, Inc. 'Pursuant to Charter Section 373, enclosed for approval by your Honorable Body is Resolution No. 012016, adopted by the Board of Water and Power Commissioners (Board) on July 19,2011, approved as to form and legality by the City Attorney, which authorizes execution of Amendment No.1 to Agreement No. 47446-6 with Oracle America, Inc., for Software Licensing and Maintenance. This amendment will increase contract limit by $28,700,000 and extend the term three years with two one-year renewal options. As directed by the Board, transmitted to you are supporting documents. If there are any questions regarding this item, please contact Ms. Winifred Yancy, Director of Local Government and Community Relations, at (213) 367-0025. Sincerely, Barbara E. Moschos Board Secretary BEM:oja Enclosures: LADWP Resolution Board Letter CAO Report Amendment No.1 Agreement No. 47446-6 Water AND Power Conservation ... A way OF LIFE 111 North Hope Street, Los Angeles, California 90012-2607 Mailing address: Box 51111, Los Angeles 90051-5700 Telephone: (213) 367 -42 t 1 Cable address: DEWAPOLA na.h Rec;clatle and made from recycled waste. 'O<?' c/enc: Mayor Antonio Villaraigosa Councilmember Jan C. Perry, Chair, Energy and the Environment Committee Gerry F.
    [Show full text]
  • Essbase Administration Services Installation Guide for Unix
    ESSBASE® ADMINISTRATION SERVICES RELEASE 9.3.1 INSTALLATION GUIDE FOR UNIX Administration Services Installation Guide for Unix, 9.3.1 Copyright © 2001, 2008, Oracle and/or its affiliates. All rights reserved. Authors: Loren Davidson The Programs (which include both the software and documentation) contain proprietary information; they are provided under a license agreement containing restrictions on use and disclosure and are also protected by copyright, patent, and other intellectual and industrial property laws. Reverse engineering, disassembly, or decompilation of the Programs, except to the extent required to obtain interoperability with other independently created software or as specified by law, is prohibited. The information contained in this document is subject to change without notice. If you find any problems in the documentation, please report them to us in writing. This document is not warranted to be error-free. Except as may be expressly permitted in your license agreement for these Programs, no part of these Programs may be reproduced or transmitted in any form or by any means, electronic or mechanical, for any purpose. If the Programs are delivered to the United States Government or anyone licensing or using the Programs on behalf of the United States Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, use, duplication, disclosure, modification, and adaptation of the Programs, including documentation and technical data, shall be subject to the licensing restrictions set forth in the applicable Oracle license agreement, and, to the extent applicable, the additional rights set forth in FAR 52.227-19, Commercial Computer Software--Restricted Rights (June 1987).
    [Show full text]
  • Oracle Exalytics In-Memory Machine: a Brief Introduction
    Oracle White Paper – Oracle Exalytics In-Memory Machine: A Brief Introduction An Oracle White Paper January, 2014 ORACLE EXALYTICS IN-MEMORY MACHINE: A BRIEF INTRODUCTION 1 Oracle White Paper – Oracle Exalytics In-Memory Machine: A Brief Introduction Contents Oracle Exalytics Overview .................................................................. 5 Oracle Exalytics Hardware Architecture .......................................... 6 Oracle Exalytics Software Overview ............................................... 7 Oracle Business Intelligence Foundation Suite ...................................... 7 Oracle TimesTen In-Memory Database for Exalytics ............................. 7 Oracle Endeca Information Discovery .................................................... 8 Exalytics In-memory Software ......................................................... 8 OBIEE In-Memory Accelerator ............................................................... 9 Essbase In-Memory Acclerator ............................................................... 9 In-Memory Data Caching ........................................................................ 9 BI Publisher In-Memory Accelerator ..................................................... 11 The Engineered System Value ......................................................... 11 Ideal Platform for Business Analytics Consolidation ......................... 11 An Entirely New User Experience ..................................................... 12 Interactivity and Responsiveness .................................................
    [Show full text]
  • Oracle Essbase Spreadsheet Add-In User's Guide
    ORACLE® ESSBASE SPREADSHEET ADD-IN RELEASE 11.1.1 USER’S GUIDE Spreadsheet Add-in User’s Guide, 11.1.1 Copyright © 1991, 2008, Oracle and/or its affiliates. All rights reserved. Authors: EPM Information Development Team This software and related documentation are provided under a license agreement containing restrictions on use and disclosure and are protected by intellectual property laws. Except as expressly permitted in your license agreement or allowed by law, you may not use, copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform, publish or display any part, in any form, or by any means. Reverse engineering, disassembly, or decompilation of this software, unless required by law for interoperability, is prohibited. The information contained herein is subject to change without notice and is not warranted to be error-free. If you find any errors, please report them to us in writing. If this software or related documentation is delivered to the U.S. Government or anyone licensing it on behalf of the U.S. Government, the following notice is applicable: U.S. GOVERNMENT RIGHTS: Programs, software, databases, and related documentation and technical data delivered to U.S. Government customers are "commercial computer software" or "commercial technical data" pursuant to the applicable Federal Acquisition Regulation and agency-specific supplemental regulations. As such, the use, duplication, disclosure, modification, and adaptation shall be subject to the restrictions and license terms set forth in the applicable Government contract, and, to the extent applicable by the terms of the Government contract, the additional rights set forth in FAR 52.227-19, Commercial Computer Software License (December 2007).
    [Show full text]
  • Essbase on OCI: Backup and Restore (PDF)
    Essbase on OCI: Backup and Restore This paper covers disaster recovery and version upgrade planning for Essbase instances deployed on OCI . June 2020 | Version 1.2 Copyright © 2020, Oracle and/or its affiliates Confidential - Public DISCLAIMER This document in any form, software or printed matter, contains proprietary information that is the exclusive property of Oracle. Your access to and use of this confidential material is subject to the terms and conditions of your Oracle software license and service agreement, which has been executed and with which you agree to comply. This document and information contained herein may not be disclosed, copied, reproduced or distributed to anyone outside Oracle without prior written consent of Oracle. This document is not part of your license agreement nor can it be incorporated into any contractual agreement with Oracle or its subsidiaries or affiliates. This document is for informational purposes only and is intended solely to assist you in planning for the implementation and upgrade of the product features described. It is not a commitment to deliver any material, code, or functionality, and should not be relied upon in making purchasing decisions. The development, release, and timing of any features or functionality described in this document remains at the sole discretion of Oracle. Due to the nature of the product architecture, it may not be possible to safely include all features described in this document without risking significant destabilization of the code. 1 WHITE PAPER | Essbase on
    [Show full text]
  • Rudolph Ferrara 22012 Verbena Pkwy, Spicewood, TX 78669 (484) 903-6374 Ó [email protected]
    Rudolph Ferrara 22012 Verbena Pkwy, Spicewood, TX 78669 (484) 903-6374 [email protected] https://www.linkedin.com/in/rudy-ferrara-1853461 ° 11 years of strong data processing experience in designing and implementing data warehouses and Business Intelligence applications ° Developed ETL solutions, data models, and reports. Gathered requirements and lead development teams ° Oracle Hyperion EPM developer (Essbase, Planning, DRM). Oracle Essbase 11 Certified Implementation Specialist ° Data analysis (with MBA) and business domain skills in many business verticals including health care, financials, legal, and government domains. EDUCATION Master of Information and Data Science, UC Berkeley, Expected May 2017, Berkeley, CA MBA, Keller Graduate School of Management, Fort Washington, PA M.S. Computer Science, Lehigh University, Bethlehem, PA B.S. Computer Engineering, Lehigh University, Bethlehem, PA TECHNICAL EXPERTISE Languages SQL, PL/SQL, Python, Perl, UNIX Shell Scripting, C, C++, Java, Batch scripts Databases ORACLE, MS SQL Server, IBM DB2 UDB, MySQL Operating System WINDOWS, Linux, Unix-AIX, Solaris Tools/Software Hyperion Essbase, Hyperion Planning, FDM, FDMEE, EPMA, DRM, ODI, Informatica 7.x/8.x, TOAD, SQL Loader, SQL Developer, Borland C++, Visual C++, Eclipse, OBIEE, OBIA, JSP, J2EE, JAVA SCRIPT, VB SCRIPT, Drupal PROFESSIONAL EXPERIENCE Sears Holdings Apr 2016 – Present Lead, Business Intelligence - MSO Environment: MS SQL Server, MySQL, Pentaho (Kettle), R, Linux, Tableau • Leading the development of new business intelligence subject areas • Automated the multiple linear regression of sentiment analyses of survey result comments to show customer sentiment’s impact on NPS (Net Promoter Score) score. Created visualizations in Tableau. • Identifying ways that data science technologies such as machine learning, statistical analysis, big data, and data visualization can add value to the environment.
    [Show full text]