Oracle Designer RIP? A First Look At Oracle Data Modeler

Size: px
Start display at page:

Download "Oracle Designer RIP? A First Look At Oracle Data Modeler"

Transcription

1 Howard Ong Principal Consultant Aurora Consulting Pty Ltd Abstract Like many Oracle developers, the author has endeared himself to Oracle Designer for many years. Ever since Oracle placed Designer on maintenance support (the equivalence of life support for a software package), Designer s faithful band of followers have been waiting for Oracle to introduce the next killer data modelling tool. The introduction of SQL Developer Data Modeler is a glimmer of light in a very long tunnel. This paper examines the features of Data Modeler and attempts to answer the all-important question: are we ready to turn off Designer s life support system? About The Author A frequent presenter at local and regional conferences, Howard has been a proficient user of database technology since In particular, Howard possesses in-depth experience in the planning and development of Business Intelligence and E-Business Applications. Harbouring a keen interest in the application of advanced database in these areas, Howard and his team have helped many organisations deploy BI and E-Business solutions using Oracle, Microsoft and IBM technology. Since 1997, Aurora Consulting has been delivering Data Warehouses and E-Business solutions to a wide variety of organisations including large government departments and ASX-listed companies. For more information on Howard or Aurora Consulting, visit or info@aurora-consult.com.au. AUSOUG Conference 2009, Perth Page 1

2 [The follow evaluation is based on Oracle SQL Developer Data Modeler , first released 1 July 2009.] Introduction At the risk of sounding like an IT professional that has not kept up with the times, this author admits to loving the Oracle Designer product. And lets face it, even though 100% forms generation is consigned to the way of the dodos, Oracle Designer remained a great database design tool. Sadly, sentimentality does not go down well with the folks at Redwood Shore; and Oracle Designer has been on maintenance support (a.k.a. life support) for a number of years now. As a result, Oracle Designer has been left on the scrap heap and has not kept up with recent advancements in Oracle database technology. Many recently introduced Oracle database features such as materialised views, dimensions, directories, external tables, LOBs storage clauses are not supported by Oracle Designer. One of the most frustrating things of being a supporter of Oracle Designer is the lack of a replacement product from Oracle until now. Thus (drum roll ), it is great anticipation and hope and the author would like to introduce a new database designer tool from Oracle Oracle SQL Developer Data Modeler! (OK, first problem with the product, it has too long a name. In view of saving our precious forests, lets just call it Oracle Data Modeler from this point on.) The Basics Before looking any further, lets get the basics right and look at what Oracle Data Modeler is. Oracle Data Modeler is the closest thing to an Oracle Designer replacement product from Oracle in many years. Like Designer, it performs conceptual data modelling, it offers a full spectrum of data and database modelling capabilities: Entity relationship modelling Relational database design Multidimensional modeling Reverse engineering DDL generation It supports those recently introduced database features that Oracle Designer does not support. As an open-platform product, Oracle Data Modeler supports Oracle and non-oracle databases, as data sources (for reading data dictionary definition in reverse engineering operations) and target databases. The databases supported are Oracle (9i, 10g, 11g), Microsoft SQL Server (2000 and 2005), IBM DB2/390 and DB2 LUW (Linux, Unix and Windows) v7 and v8. In spite of that, the author doubts Oracle will win too many converts form the non-oracle user base, especially considering that it does not support SQL Server Like its SQL Developer cousin, Oracle Data Modeler runs on multiple platforms (Windows, Linux, Mac OS X). Oracle Data Modeler does not require a database repository and is hence simple to install. The design is stored in file system as XML files. Oracle Data Modeler may be downloaded at AUSOUG Conference 2009, Perth Page 2

3 Before you rush in to your nearest web browser to download the tool, lets now look at what Oracle Data Modeler is not: It is not Oracle Designer. The 2 key differentiations are: it does not generate applications (no big deal); and does not run on a database repository (a potential problem). It is not SQL Developer. Data Modeler is a stand alone product. However, like SQL Developer, it needs JDK6 (not JRE6) to run. JDK is required for SQL Developer because it needs the Java Debugger. Data Modeler does not need the debugger s feature but inherits the requirement for JDK probably because it was built using the same underlying code base as SQL Developer. It is not free! On the July 2009 price list, licence cost is $3602 per user, and costs $793 per user per year for support. If you are looking for a freebie, all is not lost, there exists a read-only viewer, which is free. The design steps involved in using Oracle Data Modeler is very similar to Oracle Designer, illustrated by the following diagram: Where Logical Model approximates Designer s Entity Relationship Diagram. Relational Model approximates Designer s Server Model. Physical Model approximates Designer s DB Admin. The screenshots below illustrate the steps involved in designing a simple database, including some preliminary setup steps. AUSOUG Conference 2009, Perth Page 3

4 Oracle Data Modeler Work Areas Creating Domains Creating Entities AUSOUG Conference 2009, Perth Page 4

5 Creating Attributes Creating Relations AUSOUG Conference 2009, Perth Page 5

6 Logical Model Forward Engineer to Relational Model Adding Prefix To Tables AUSOUG Conference 2009, Perth Page 6

7 Relational Model Applying Naming Standards AUSOUG Conference 2009, Perth Page 7

8 While you are able to apply naming standards to keys and constraints at the click of a mouse, for those who are used to Oracle Designer s naming standards, the result may not be what you expect. Some of the differences between the 2 naming standards are: Oracle Data Modeler s naming standards use the full table name rather than the abbreviated name (Designer s table aliases) in naming keys and constraints. This leads to rather long and sometimes illegal names (where it becomes longer than 30 characters). For performance reason, the author usually creates indexes corresponding to foreign keys columns. In Oracle Data Modeler, there is no longer an association between a foreign key and the index. As such, the Designer s naming standard of tab1_tab2_fk_i is no longer used. If you like to your new database to use the same naming standards you have been using; or you are simply not used to the new naming standards (like the author), you can manually name the objects. To this end, there exists a feature to configure Oracle Data Modeler such that its naming standards are not applied for the types of objects you have manually named. However, there is bug causing this feature not to work in the current release. Creating Triggers AUSOUG Conference 2009, Perth Page 8

9 Creating Tablespaces As in Designer, once created the tablespace may then be associated with tables and indexes. However, a current limitation exists where a primary key may not be associated with a tablespace unless the USING INDEX clause is used. AUSOUG Conference 2009, Perth Page 9

10 Creating Stored Procedures There are a number of serious limitations to the Stored Procedure capabilities of Data Modeler: Only procedures are supported. Functions and packages are not supported. Parameters are not supported. Creating Users, Roles and Privileges AUSOUG Conference 2009, Perth Page 10

11 AUSOUG Conference 2009, Perth Page 11

12 Generating DDL Unlike Designer, where DB Admin is used to store strictly implementation definitions, Oracle Data Modeler s physical models are used to store many (in the author s view) design definitions. Some of the commonly used objects stored in the physical model are: Triggers Synonyms Materialised Views Stored Procedures Dimensions Directories External Tables Tables Partitions Index Partitions Users, Roles & Privileges Tablespaces AUSOUG Conference 2009, Perth Page 12

13 Note that there is an additional steps involved in storing and retrieving the physical model. In other words, if you open a design and the physical model you created previously is not there, don t panic. The physical model is not automatically opened on opening a design and you have to open it separately. Data Modeler Reports To report on the database model, the following setup steps are needed: Create a Reporting Schema from Oracle Data Modeler. Install Data Modeler Reports onto SQL Developer. The Data Modeler reports is no more than a few simple scripts that display the data from the Reporting Schema. For someone that is used to Oracle Designer s repository reports, the author finds these Data Modeler reports very inadequate. AUSOUG Conference 2009, Perth Page 13

14 Oracle Data Modeler stores each model in a standard directory with the model name as directory name with an main header file called model_name.xml. Thus, unlike Designer, it does not use a database repository to enable concurrent access. To support concurrent development, Oracle recommends that you use a source code control tool such as Subversion to manage concurrent changes made by different users. Unfortunately, this does not work in practice as merging just minor changes from different users corrupt the model file. Importing From Oracle Database Source Schema: SQL> select object_type, object_name from user_objects 2 where object_type not like 'INDEX%' 3 and object_type not like '%PARTITION' 4 and object_name not like 'DR%' 5 and object_name not like 'MVIEW$%' 6 order by 1,2 7 / OBJECT_TYPE OBJECT_NAME DIMENSION CHANNELS_DIM CUSTOMERS_DIM PRODUCTS_DIM PROMOTIONS_DIM TIMES_DIM LOB MATERIALIZED VIEW TABLE SYS_LOB C00006$$ SYS_LOB C00002$$ CAL_MONTH_SALES_MV FWEEK_PSCAT_SALES_MV CAL_MONTH_SALES_MV CHANNELS COSTS COUNTRIES CUSTOMERS FWEEK_PSCAT_SALES_MV PRODUCTS PROMOTIONS SALES SALES_TRANSACTIONS_EXT SUPPLEMENTARY_DEMOGRAPHICS AUSOUG Conference 2009, Perth Page 14

15 TIMES VIEW PROFITS SQL> select table_name,count(*) from user_tab_partitions 2 group by table_name 3 / TABLE_NAME COUNT(*) COSTS 28 SALES 28 SQL> select index_name,count(*) from user_ind_partitions 2 group by index_name 3 / INDEX_NAME COUNT(*) SALES_CHANNEL_BIX 28 SALES_CUST_BIX 28 SALES_PROMO_BIX 28 SALES_PROD_BIX 28 SALES_TIME_BIX 28 COSTS_PROD_BIX 28 COSTS_TIME_BIX 28 Defining Database Connection AUSOUG Conference 2009, Perth Page 15

16 Selecting Import Objects AUSOUG Conference 2009, Perth Page 16

17 Some roles are pre-selected. These include the roles the user has been granted - CWM_USER, RESOURCE and SELECT_CATALOG_ROLE. AUSOUG Conference 2009, Perth Page 17

18 All tablespaces where schema objects reside are pre-selected. AUSOUG Conference 2009, Perth Page 18

19 Notice that standalone functions and packages are not available for import as they are not supported by Oracle Data Modeler. AUSOUG Conference 2009, Perth Page 19

20 Imported Data Model AUSOUG Conference 2009, Perth Page 20

21 Table and index partitions Triggers Dimensions AUSOUG Conference 2009, Perth Page 21

22 Directories External Tables Users, Roles and Object Privileges AUSOUG Conference 2009, Perth Page 22

23 Synonyms AUSOUG Conference 2009, Perth Page 23

24 Tablespaces A physical model is created with many new database object types incorporated, including the following: Tables Triggers Views Synonyms Materialised views (created under the Tables stub) Stored Procedures Dimensions Directories External tables Table partitions Users and roles Tablespaces However, the following are not imported: Index partitions (the stubs exist but are blank) Standalone functions and packages Storage clauses. Object privileges (the information screen exists but are not populated) AUSOUG Conference 2009, Perth Page 24

25 Importing From Oracle Designer Defining Database Connection Selection Import Objects AUSOUG Conference 2009, Perth Page 25

26 AUSOUG Conference 2009, Perth Page 26

27 Imported Data Model AUSOUG Conference 2009, Perth Page 27

28 The following are not imported: PLSQL, triggers, and implementation details (table implementations, view implementations, sequence implementations, PLSQL implementations, tablespaces, storage definitions, and so on). Data model diagrams are imported as Subviews. Only the content of the diagrams are imported, not the specific layout, as illustrated in the screenshots below. In fact, Oracle Data Modeler s ability to format diagrams are substantial inferior to that of Designer. AUSOUG Conference 2009, Perth Page 28

29 Importing From DDL Selecting DDL File For the import to work, Oracle Data Modeler expects all DDL commands in one mega script, i.e. Designer-style multi-scripts setup is not supported. Selection Physical Model AUSOUG Conference 2009, Perth Page 29

30 Previewing Import AUSOUG Conference 2009, Perth Page 30

31 Imported Data Model Limitations Note also that importing from DDL does not import data model diagrams (subviews) and domains. In one case, a foreign key of a large table was not imported. This bug does not occur when importing directly from Designer. Conclusion Having trial a number of key features of Oracle Data Modeler, the author would conclude that while it shows promises, it is currently not an adequate replacement product for Oracle Designer. Promisingly though, Oracle has incorporated a number of useful features that was not in the Oracle Designer product. In time to come, as the product matures and the bugs are ironed out, this glimmer of light in the tunnel will blossom into a fullfledge spotlight - Oracle Data Modeler would likely become the database designer tool of choice within the Oracle developer community of the future. AUSOUG Conference 2009, Perth Page 31

32 AUSOUG Conference 2009, Perth Page 32

<Insert Picture Here> Introducing Data Modeling and Design with Oracle SQL Developer Data Modeler

<Insert Picture Here> Introducing Data Modeling and Design with Oracle SQL Developer Data Modeler Introducing Data Modeling and Design with Oracle SQL Developer Data Modeler Sue Harper Senior Principle Product Manager 1 The following is intended to outline our general product

More information

Oracle SQL Developer for Database Developers. An Oracle White Paper September 2008

Oracle SQL Developer for Database Developers. An Oracle White Paper September 2008 Oracle SQL Developer for Database Developers An Oracle White Paper September 2008 Oracle SQL Developer for Database Developers Introduction...3 Audience...3 Key Benefits...3 Architecture...4 Key Features...4

More information

<Insert Picture Here>

<Insert Picture Here> Using Oracle SQL Developer and SQL Developer Data Modeler to aid your Oracle Application Express development Marc Sewtz Software Development Manager Oracle Application

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

Oracle SQL Developer for Database Developers. An Oracle White Paper June 2007

Oracle SQL Developer for Database Developers. An Oracle White Paper June 2007 Oracle SQL Developer for Database Developers An Oracle White Paper June 2007 Oracle SQL Developer for Database Developers Introduction...3 Audience...3 Key Benefits...3 Architecture...4 Key Features...4

More information

Oracle Architecture, Concepts & Facilities

Oracle Architecture, Concepts & Facilities COURSE CODE: COURSE TITLE: CURRENCY: AUDIENCE: ORAACF Oracle Architecture, Concepts & Facilities 10g & 11g Database administrators, system administrators and developers PREREQUISITES: At least 1 year of

More information

Data Mining - The Next Mining Boom?

Data Mining - The Next Mining Boom? Howard Ong Principal Consultant Aurora Consulting Pty Ltd Abstract This paper introduces Data Mining to its audience by explaining Data Mining in the context of Corporate and Business Intelligence Reporting.

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

How To Load Data Into An Org Database Cloud Service - Multitenant Edition

How To Load Data Into An Org Database Cloud Service - Multitenant Edition An Oracle White Paper June 2014 Data Movement and the Oracle Database Cloud Service Multitenant Edition 1 Table of Contents Introduction to data loading... 3 Data loading options... 4 Application Express...

More information

Oracle SQL Developer Migration

Oracle SQL Developer Migration An Oracle White Paper May 2010 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Oracle SQL Developer: Architecture and Supported Platforms... 3 Supported Platforms... 4 Supported Databases...

More information

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1

Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Optimizing the Performance of the Oracle BI Applications using Oracle Datawarehousing Features and Oracle DAC 10.1.3.4.1 Mark Rittman, Director, Rittman Mead Consulting for Collaborate 09, Florida, USA,

More information

An Oracle White Paper June 2009. An Introduction to Oracle SQL Developer Data Modeler

An Oracle White Paper June 2009. An Introduction to Oracle SQL Developer Data Modeler An Oracle White Paper June 2009 An Introduction to Oracle SQL Developer Data Modeler Introduction... 1 Oracle SQL Developer Data Modeler... 2 Architecture... 2 Integrated Models... 4 Logical Models...

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

Top 10 Oracle SQL Developer Tips and Tricks

Top 10 Oracle SQL Developer Tips and Tricks Top 10 Oracle SQL Developer Tips and Tricks December 17, 2013 Marc Sewtz Senior Software Development Manager Oracle Application Express Oracle America Inc., New York, NY The following is intended to outline

More information

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview

An Oracle White Paper February 2014. Oracle Data Integrator 12c Architecture Overview An Oracle White Paper February 2014 Oracle Data Integrator 12c Introduction Oracle Data Integrator (ODI) 12c is built on several components all working together around a centralized metadata repository.

More information

IBM Emptoris Contract Management. Release Notes. Version 10.0.1.5 GI13-3418-09

IBM Emptoris Contract Management. Release Notes. Version 10.0.1.5 GI13-3418-09 IBM Emptoris Management Release Notes Version 10.0.1.5 GI13-3418-09 Note: Before using this information and the product it supports, read the information in Notices on page 75. Copyright IBM Corporation

More information

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4

Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 Migrating Non-Oracle Databases and their Applications to Oracle Database 12c O R A C L E W H I T E P A P E R D E C E M B E R 2 0 1 4 1. Introduction Oracle provides products that reduce the time, risk,

More information

1 Changes in this release

1 Changes in this release Oracle SQL Developer Oracle TimesTen In-Memory Database Support Release Notes Release 4.0 E39883-01 June 2013 This document provides late-breaking information as well as information that is not yet part

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

Toad Data Modeler - Features Matrix

Toad Data Modeler - Features Matrix Toad Data Modeler - Features Matrix Functionality Commercial Trial Freeware Notes General Features Physical Model (database specific) Universal Model (generic physical model) Logical Model (support for

More information

Setting up SQL Translation Framework OBE for Database 12cR1

Setting up SQL Translation Framework OBE for Database 12cR1 Setting up SQL Translation Framework OBE for Database 12cR1 Overview Purpose This tutorial shows you how to use have an environment ready to demo the new Oracle Database 12c feature, SQL Translation Framework,

More information

20464C: Developing Microsoft SQL Server Databases

20464C: Developing Microsoft SQL Server Databases 20464C: Developing Microsoft SQL Server Databases Course Details Course Code: Duration: Notes: 20464C 5 days This course syllabus should be used to determine whether the course is appropriate for the students,

More information

SQL Server Training Course Content

SQL Server Training Course Content SQL Server Training Course Content SQL Server Training Objectives Installing Microsoft SQL Server Upgrading to SQL Server Management Studio Monitoring the Database Server Database and Index Maintenance

More information

Change Manager 5.0 Installation Guide

Change Manager 5.0 Installation Guide Change Manager 5.0 Installation Guide Copyright 1994-2008 Embarcadero Technologies, Inc. Embarcadero Technologies, Inc. 100 California Street, 12th Floor San Francisco, CA 94111 U.S.A. All rights reserved.

More information

Managing Objects with Data Dictionary Views. Copyright 2006, Oracle. All rights reserved.

Managing Objects with Data Dictionary Views. Copyright 2006, Oracle. All rights reserved. Managing Objects with Data Dictionary Views Objectives After completing this lesson, you should be able to do the following: Use the data dictionary views to research data on your objects Query various

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

Configuring an Oracle Business Intelligence Enterprise Edition Resource in Metadata Manager

Configuring an Oracle Business Intelligence Enterprise Edition Resource in Metadata Manager Configuring an Oracle Business Intelligence Enterprise Edition Resource in Metadata Manager 2011 Informatica Abstract This article shows how to create and configure an Oracle Business Intelligence Enterprise

More information

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service

An Oracle White Paper June 2014. Security and the Oracle Database Cloud Service An Oracle White Paper June 2014 Security and the Oracle Database Cloud Service 1 Table of Contents Overview... 3 Security architecture... 4 User areas... 4 Accounts... 4 Identity Domains... 4 Database

More information

DB2 Database Demonstration Program Version 9.7 Installation and Quick Reference Guide

DB2 Database Demonstration Program Version 9.7 Installation and Quick Reference Guide DB2 Database Demonstration Program Version 9.7 Installation and Quick Reference Guide George Baklarz DB2 Worldwide Technical Sales Support IBM Toronto Laboratory DB2 Demonstration Program Version 9.7 Usage

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

Cúram Business Intelligence Reporting Developer Guide

Cúram Business Intelligence Reporting Developer Guide IBM Cúram Social Program Management Cúram Business Intelligence Reporting Developer Guide Version 6.0.5 IBM Cúram Social Program Management Cúram Business Intelligence Reporting Developer Guide Version

More information

PeopleSoft DDL & DDL Management

PeopleSoft DDL & DDL Management PeopleSoft DDL & DDL Management by David Kurtz, Go-Faster Consultancy Ltd. Since their takeover of PeopleSoft, Oracle has announced project Fusion, an initiative for a new generation of Oracle Applications

More information

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0

Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Oracle Business Intelligence Publisher Deploying Oracle Business Intelligence Publisher in J2EE Application Servers Release 10.1.3.2.0 Part No. B32481-01 December 2006 Introduction Oracle BI Publisher

More information

Oracle Insurance Policy Administration

Oracle Insurance Policy Administration Oracle Insurance Policy Administration Databases Installation Instructions Step 1 Version 10.1.2.0 Document Part Number: E59346-01 December, 2014 Copyright 2009, 2014, Oracle and/or its affiliates. All

More information

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM

IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015. Integration Guide IBM IBM Campaign and IBM Silverpop Engage Version 1 Release 2 August 31, 2015 Integration Guide IBM Note Before using this information and the product it supports, read the information in Notices on page 93.

More information

Development Best Practices

Development Best Practices Development Best Practices 0 Toad Toad for Oracle v.9.6 Configurations for Oracle Standard Basic Toad Features + Team Coding + PL/SQL Profiler + PL/SQL Debugging + Knowledge Xpert PL/SQL and DBA Toad for

More information

DATABASE REVERSE ENGINEERING

DATABASE REVERSE ENGINEERING DATABASE REVERSE ENGINEERING DBTech_EXT Workshop in Thessaloniki 2009-09-10 Kari Silpiö HAAGA-HELIA University of Applied Sciences Database Reverse Engineering 2 OUTLINE What is Database Reverse Engineering?

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

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM

IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016. Integration Guide IBM IBM Campaign Version-independent Integration with IBM Engage Version 1 Release 3 April 8, 2016 Integration Guide IBM Note Before using this information and the product it supports, read the information

More information

An Oracle White Paper March 2012. Managing Metadata with Oracle Data Integrator

An Oracle White Paper March 2012. Managing Metadata with Oracle Data Integrator An Oracle White Paper March 2012 Managing Metadata with Oracle Data Integrator Introduction Metadata information that describes data is the foundation of all information management initiatives aimed at

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

IBM DB2 XML support. How to Configure the IBM DB2 Support in oxygen

IBM DB2 XML support. How to Configure the IBM DB2 Support in oxygen Table of Contents IBM DB2 XML support About this Tutorial... 1 How to Configure the IBM DB2 Support in oxygen... 1 Database Explorer View... 3 Table Explorer View... 5 Editing XML Content of the XMLType

More information

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added?

DBMS Questions. 3.) For which two constraints are indexes created when the constraint is added? DBMS Questions 1.) Which type of file is part of the Oracle database? A.) B.) C.) D.) Control file Password file Parameter files Archived log files 2.) Which statements are use to UNLOCK the user? A.)

More information

Automate Your BI Administration to Save Millions with Command Manager and System Manager

Automate Your BI Administration to Save Millions with Command Manager and System Manager Automate Your BI Administration to Save Millions with Command Manager and System Manager Presented by: Dennis Liao Sr. Sales Engineer Date: 27 th January, 2015 Session 2 This Session is Part of MicroStrategy

More information

Using the Eclipse Data Tools Platform with SQL Anywhere 10. A whitepaper from Sybase ianywhere

Using the Eclipse Data Tools Platform with SQL Anywhere 10. A whitepaper from Sybase ianywhere Using the Eclipse Data Tools Platform with SQL Anywhere 10 A whitepaper from Sybase ianywhere CONTENTS Introduction 3 Requirements 3 Before you begin 3 Downloading the Data Tools Platform 3 Starting the

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

Installation Guide. Version 2.1. on Oracle Java Cloud Service 2015-06-19

Installation Guide. Version 2.1. on Oracle Java Cloud Service 2015-06-19 Installation Guide on Oracle Java Cloud Service Version 2.1 2015-06-19 1 Preface This installation guide provides instructions for installing FlexDeploy on the Oracle Java Cloud Service. For on-premise

More information

IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager

IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager IBM WebSphere Application Server V8.5 lab Basic Liberty profile administration using the job manager Scenario You are a system administrator responsible for managing web application server installations.

More information

BUSINESS OBJECTS EDGE

BUSINESS OBJECTS EDGE You can read the recommendations in the user guide, the technical guide or the installation guide for BUSINESS OBJECTS EDGE 3.1. You'll find the answers to all your questions on the BUSINESS OBJECTS EDGE

More information

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities.

Delivery Method: Instructor-led, group-paced, classroom-delivery learning model with structured, hands-on activities. Course Code: Title: Format: Duration: SSD024 Oracle 11g DBA I Instructor led 5 days Course Description Through hands-on experience administering an Oracle 11g database, you will gain an understanding of

More information

DEPLOYMENT ROADMAP March 2015

DEPLOYMENT ROADMAP March 2015 DEPLOYMENT ROADMAP March 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and may

More information

Release Bulletin EDI Products 5.2.1

Release Bulletin EDI Products 5.2.1 Release Bulletin EDI Products 5.2.1 Document ID: DC00191-01-0521-01 Last revised: June, 2010 Copyright 2010 by Sybase, Inc. All rights reserved. Sybase trademarks can be viewed at the Sybase trademarks

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

MS-50401 - Designing and Optimizing Database Solutions with Microsoft SQL Server 2008

MS-50401 - Designing and Optimizing Database Solutions with Microsoft SQL Server 2008 MS-50401 - Designing and Optimizing Database Solutions with Microsoft SQL Server 2008 Table of Contents Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student

More information

DB2 Application Development and Migration Tools

DB2 Application Development and Migration Tools DB2 Application Development and Migration Tools Migration Tools If I decide I want to move to DB2 from my current database, can you help me? Yes, we have migration tools and offerings to help you. You

More information

Managing Third Party Databases and Building Your Data Warehouse

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

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Installation Guide for Oracle Business Intelligence 11g Release 1 (11.1.1) E10539-05 February 2013 Explains how to install and deinstall Oracle Business Intelligence products (including

More information

Business Intelligence Tutorial: Introduction to the Data Warehouse Center

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

More information

Data Warehouse Center Administration Guide

Data Warehouse Center Administration Guide IBM DB2 Universal Database Data Warehouse Center Administration Guide Version 8 SC27-1123-00 IBM DB2 Universal Database Data Warehouse Center Administration Guide Version 8 SC27-1123-00 Before using this

More information

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener

An Oracle White Paper May 2013. Creating Custom PDF Reports with Oracle Application Express and the APEX Listener An Oracle White Paper May 2013 Creating Custom PDF Reports with Oracle Application Express and the APEX Listener Disclaimer The following is intended to outline our general product direction. It is intended

More information

Oracle Data Integrator integration with OBIEE

Oracle Data Integrator integration with OBIEE Oracle Data Integrator integration with OBIEE February 26, 2010 1:20 2:00 PM Presented By Phani Kottapalli pkishore@astcorporation.com 1 Agenda Introduction to ODI Architecture Installation Repository

More information

Developing Microsoft SQL Server Databases 20464C; 5 Days

Developing Microsoft SQL Server Databases 20464C; 5 Days Developing Microsoft SQL Server Databases 20464C; 5 Days Lincoln Land Community College Capital City Training Center 130 West Mason Springfield, IL 62702 217-782-7436 www.llcc.edu/cctc Course Description

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 EBS Interface Connector User Guide V1.4

Oracle EBS Interface Connector User Guide V1.4 Oracle EBS Interface Connector User Guide V1.4 Contents Oracle EBS Interface Connector User Guide V1.4... 1 1. Introduction... 3 2. Technologies... 4 3. High level Architectural Diagram... 4 4. About Oracle

More information

Guide to the MySQL Workbench Migration Wizard: From Microsoft SQL Server to MySQL

Guide to the MySQL Workbench Migration Wizard: From Microsoft SQL Server to MySQL Guide to the MySQL Workbench Migration Wizard: From Microsoft SQL Server to MySQL A Technical White Paper Table of Contents Introduction...3 MySQL & LAMP...3 MySQL Reduces Database TCO by over 90%... 4

More information

ADAM 5.5. System Requirements

ADAM 5.5. System Requirements ADAM 5.5 System Requirements 1 1. Overview The schema below shows an overview of the ADAM components that will be installed and set up. ADAM Server: hosts the ADAM core components. You must install the

More information

Universal Management Service 2015

Universal Management Service 2015 Universal Management Service 2015 UMS 2015 Help All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording,

More information

Verax Service Desk Installation Guide for UNIX and Windows

Verax Service Desk Installation Guide for UNIX and Windows Verax Service Desk Installation Guide for UNIX and Windows March 2015 Version 1.8.7 and higher Verax Service Desk Installation Guide 2 Contact Information: E-mail: sales@veraxsystems.com Internet: http://www.veraxsystems.com/

More information

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support...

New Features... 1 Installation... 3 Upgrade Changes... 3 Fixed Limitations... 4 Known Limitations... 5 Informatica Global Customer Support... Informatica Corporation B2B Data Exchange Version 9.5.0 Release Notes June 2012 Copyright (c) 2006-2012 Informatica Corporation. All rights reserved. Contents New Features... 1 Installation... 3 Upgrade

More information

Project management (Dashboard and Metrics) with QlikView

Project management (Dashboard and Metrics) with QlikView Paper AD06 Project management (Dashboard and Metrics) with QlikView Pirault Stéphane, Keyrus Biopharma, Levallois Perret, France Delépine Guillaume, Keyrus Biopharma, Levallois Perret, France ABSTRACT

More information

Overview Document Framework Version 1.0 December 12, 2005

Overview Document Framework Version 1.0 December 12, 2005 Document Framework Version 1.0 December 12, 2005 Document History Date Author Version Description October 5, 2005 Carl Yestrau 1.0 First complete version December 12, 2005 Page A Table of Contents 1.0

More information

Using SQL Developer. Copyright 2008, Oracle. All rights reserved.

Using SQL Developer. Copyright 2008, Oracle. All rights reserved. Using SQL Developer Objectives After completing this appendix, you should be able to do the following: List the key features of Oracle SQL Developer Install Oracle SQL Developer Identify menu items of

More information

User Security in UML Models

User Security in UML Models User Security in UML Models Enterprise Architect is an intuitive, flexible and powerful UML analysis and design tool for building robust and maintainable software. This booklet explains the User Security

More information

Product Documentation. ER/Studio Repository. Installation and Administration Guide 4th Edition. Version 6.0 Published January 2011

Product Documentation. ER/Studio Repository. Installation and Administration Guide 4th Edition. Version 6.0 Published January 2011 Product Documentation ER/Studio Repository Installation and Administration Guide 4th Edition Version 6.0 Published January 2011 2011 Embarcadero Technologies, Inc. Embarcadero, the Embarcadero Technologies

More information

Installation Guidelines (MySQL database & Archivists Toolkit client)

Installation Guidelines (MySQL database & Archivists Toolkit client) Installation Guidelines (MySQL database & Archivists Toolkit client) Understanding the Toolkit Architecture The Archivists Toolkit requires both a client and database to function. The client is installed

More information

Identikey Server Windows Installation Guide 3.1

Identikey Server Windows Installation Guide 3.1 Identikey Server Windows Installation Guide 3.1 Disclaimer of Warranties and Limitations of Liabilities Disclaimer of Warranties and Limitations of Liabilities The Product is provided on an 'as is' basis,

More information

Oracle SQL Developer Migration. An Oracle White Paper September 2008

Oracle SQL Developer Migration. An Oracle White Paper September 2008 Oracle SQL Developer Migration An Oracle White Paper September 2008 Oracle SQL Developer Migration Overview... 3 Introduction... 3 Supported Databases... 4 Architecture... 4 Migration... 4 Standard Migrate...

More information

An Oracle White Paper June 2013. Migrating Applications and Databases with Oracle Database 12c

An Oracle White Paper June 2013. Migrating Applications and Databases with Oracle Database 12c An Oracle White Paper June 2013 Migrating Applications and Databases with Oracle Database 12c Disclaimer The following is intended to outline our general product direction. It is intended for information

More information

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

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

More information

Readme File for All Platforms

Readme File for All Platforms Essbase Spreadsheet Services Release 7.1 Readme File for All Platforms This file contains the following sections: What is Essbase Spreadsheet Services?... 1 New Features in this Release... 2 Platforms

More information

Using Oracle9i SCM for Software Configuration Management. An Oracle Technical White Paper July 2002

Using Oracle9i SCM for Software Configuration Management. An Oracle Technical White Paper July 2002 Using Oracle9i SCM for Software Configuration Management An Oracle Technical White Paper July 2002 INTRODUCTION As organizations strive to build larger, more complex, fully integrated software applications

More information

FileMaker Server 11. FileMaker Server Help

FileMaker Server 11. FileMaker Server Help FileMaker Server 11 FileMaker Server Help 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

Database Extension 1.5 ez Publish Extension Manual

Database Extension 1.5 ez Publish Extension Manual Database Extension 1.5 ez Publish Extension Manual 1999 2012 ez Systems AS Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License,Version

More information

Alert Logic Log Manager

Alert Logic Log Manager whitepaper Alert Logic Log Manager Configuring Log Sources for Best Practice Reports CONTENTS Introduction 1 Best Practice Reports in Log Manager 2 Active Directory 2 Databases 2 Network Devices 2 Windows

More information

Database security tutorial. Part I

Database security tutorial. Part I Database security tutorial Part I Oracle Tutorials, June 4 th 2012 Daniel Gómez Blanco Agenda Authentication Roles and privileges Auditing 2 Authentication Basis of any security model Process of confirming

More information

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc.

Sample copy. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Introduction To WebLogic Server Property of Web 10.3 Age Solutions Inc. Objectives At the end of this chapter, participants should be able to: Understand basic WebLogic Server architecture Understand the

More information

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines

An Oracle White Paper August 2010. Oracle Database Auditing: Performance Guidelines An Oracle White Paper August 2010 Oracle Database Auditing: Performance Guidelines Introduction Database auditing has become increasingly important as threats to applications become more sophisticated.

More information

Informatica Data Replication 9.1.1 FAQs

Informatica Data Replication 9.1.1 FAQs Informatica Data Replication 9.1.1 FAQs 2012 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying, recording or otherwise)

More information

CHAPTER 4: BUSINESS ANALYTICS

CHAPTER 4: BUSINESS ANALYTICS Chapter 4: Business Analytics CHAPTER 4: BUSINESS ANALYTICS Objectives Introduction The objectives are: Describe Business Analytics Explain the terminology associated with Business Analytics Describe the

More information

TG Web. Technical FAQ

TG Web. Technical FAQ TG Web Technical FAQ About this FAQ We encourage you to contact us if. You can't find the information you're looking for. You would like to discuss your specific testing requirements in more detail. You

More information

Business Intelligence Platform Installation Guide for Windows

Business Intelligence Platform Installation Guide for Windows SAP BusinessObjects Business Intelligence platform Document Version: 4.1 Support Package 3-2014-03-25 Business Intelligence Platform Installation Guide for Windows Table of Contents 1 Document History....5

More information

Oracle Enterprise Manager

Oracle Enterprise Manager Oracle Enterprise Manager Getting Started with Oracle Change Management Pack Release 9.2.0 March 2002 Part No. A96679-01 Oracle Enterprise Manager Getting Started with Oracle Change Management Pack, Release

More information

Cross Platform Transportable Tablespaces Migration in Oracle 11g

Cross Platform Transportable Tablespaces Migration in Oracle 11g Cross Platform Transportable Tablespaces Migration in Oracle 11g Prepared by ViSolve Migration Team June 2012 Contact ViSolve, Inc. 4010, Moorpark Avenue, #205 San Jose, California 95117 (602) 842 2738

More information

Developing Microsoft SQL Server Databases

Developing Microsoft SQL Server Databases CÔNG TY CỔ PHẦN TRƯỜNG CNTT TÂN ĐỨC TAN DUC INFORMATION TECHNOLOGY SCHOOL JSC LEARN MORE WITH LESS! Course 20464C: Developing Microsoft SQL Server Databases Length: 5 Days Audience: IT Professionals Level:

More information

HP Business Service Management

HP Business Service Management HP Business Service Management for the Windows and Linux operating systems Software Version: 9.10 Business Process Insight Server Administration Guide Document Release Date: August 2011 Software Release

More information

IBM DB2: LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs

IBM DB2: LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs coursemonster.com/au IBM DB2: LUW Performance Tuning and Monitoring for Single and Multiple Partition DBs View training dates» Overview Learn how to tune for optimum performance the IBM DB2 9 for Linux,

More information

Developing Microsoft SQL Server Databases (20464) H8N64S

Developing Microsoft SQL Server Databases (20464) H8N64S HP Education Services course data sheet Developing Microsoft SQL Server Databases (20464) H8N64S Course Overview In this course, you will be introduced to SQL Server, logical table design, indexing, query

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

Report and Dashboard Template 9.5.1 User Guide

Report and Dashboard Template 9.5.1 User Guide Report and Dashboard Template 9.5.1 User Guide Introduction The Informatica Data Quality Reporting and Dashboard Template for Informatica Data Quality 9.5.1, is designed to provide you a framework to capture

More information