Oracle Database: SQL and PL/SQL Fundamentals NEW

Size: px
Start display at page:

Download "Oracle Database: SQL and PL/SQL Fundamentals NEW"

Transcription

1 Oracle University Contact Us: & 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 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

2 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

3 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

4 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

5 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

6 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

7 Oracle University Contact Us: 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 powerful programming language. Through hands-on instruction from expert Oracle instructors, you'll learn to develop stored procedures, functions, packages and more. Learn To: Conditionally control code flow (loops, control structures). Use PL/SQL packages to group and contain related constructs. Create triggers to solve business challenges. Use some of the Oracle supplied PL/SQL packages to generate screen output and file output. Create anonymous PL/SQL blocks, functions and procedures. Declare PL/SQL Variables. 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. Use Oracle SQL Developer You ll use Oracle SQL Developer to develop these program units. SQL*Plus and JDeveloper are introduced in this course as optional tools. Course Bundle Note: This course is a combination of Oracle Database: PL/SQL Fundamentals and Oracle Database: Develop PL/SQL Program Units courses. Audience Application Developers Database Administrators Developer Forms Developer PL/SQL Developer Portal Developer System Analysts Technical Consultant Copyright 2013, Oracle. All rights reserved. Page 1

8 Related Training Required Prerequisites Oracle Database: Introduction to SQL Oracle Database: SQL Workshop I NEW Oracle Database: SQL Workshop II NEW Suggested Prerequisites Previous programming experience Course Objectives Use conditional compilation to customize the functionality in a PL/SQL application without removing any source code Design PL/SQL packages to group related constructs Create overloaded package subprograms for more flexibility Design PL/SQL anonymous blocks that execute efficiently Use the Oracle supplied PL/SQL packages to generate screen output, file output and mail output Write dynamic SQL for more coding flexibility Describe the features and syntax of PL/SQL Create and debug stored procedures and functions Use PL/SQL programming constructs and conditionally control code flow (loops, control structures, and explicit cursors) Manage dependencies between PL/SQL subprograms Handle runtime errors Create triggers to solve business challenges Course Topics Introduction Course Objectives Course Agenda Describe the Human Resources (HR) Schema PL/SQL development environments available in this course Introduction to SQL Developer Introduction to PL/SQL Overview of PL/SQL Copyright 2013, Oracle. All rights reserved. Page 2

9 Identify the benefits of PL/SQL Subprograms Overview of the types of PL/SQL blocks Create a Simple Anonymous Block How to generate output from a PL/SQL Block? Declare PL/SQL Identifiers List the different Types of Identifiers in a PL/SQL subprogram Usage of the Declarative Section to Define Identifiers Use variables to store data Identify Scalar Data Types The %TYPE Attribute What are Bind Variables? Sequences in PL/SQL Expressions Write Executable Statements Describe Basic PL/SQL Block Syntax Guidelines Learn to Comment the Code Deployment of SQL Functions in PL/SQL How to convert Data Types? Describe Nested Blocks Identify the Operators in PL/SQL Interaction with the Oracle Server Invoke SELECT Statements in PL/SQL Retrieve Data in PL/SQL SQL Cursor concept Avoid Errors by using Naming Conventions when using Retrieval and DML Statements Data Manipulation in the Server using PL/SQL Understand the SQL Cursor concept Use SQL Cursor Attributes to Obtain Feedback on DML Save and Discard Transactions Control Structures Conditional processing using IF Statements Conditional processing using CASE Statements Describe simple Loop Statement Describe While Loop Statement Describe For Loop Statement Use the Continue Statement Composite Data Types Use PL/SQL Records The %ROWTYPE Attribute Insert and Update with PL/SQL Records INDEX BY Tables Examine INDEX BY Table Methods Use INDEX BY Table of Records Explicit Cursors What are Explicit Cursors? Declare the Cursor Open the Cursor Copyright 2013, Oracle. All rights reserved. Page 3

10 Fetch data from the Cursor Close the Cursor Cursor FOR loop The %NOTFOUND and %ROWCOUNT Attributes Describe the FOR UPDATE Clause and WHERE CURRENT Clause Exception Handling Understand 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 Create a Modularized and Layered Subprogram Design Modularize Development With PL/SQL Blocks Understand the PL/SQL Execution Environment List the benefits of using PL/SQL Subprograms List the differences between Anonymous Blocks and Subprograms Create, Call, and Remove Stored Procedures Implement Procedures Parameters and Parameters Modes View Procedure Information Stored Functions and Debugging Subprograms Create, Call, and Remove a Stored Function Identify the advantages of using Stored Functions Identify the steps to create a stored function Invoke User-Defined Functions in SQL Statements Restrictions when calling Functions Control side effects when calling Functions View Functions Information How to debug Functions and Procedures? Packages Listing the advantages of Packages Describe Packages What are the components of a Package? Develop a Package How to enable visibility of a Package s Components? Create the Package Specification and Body using the SQL CREATE Statement and SQL Developer Invoke the Package Constructs View the PL/SQL Source Code using the Data Dictionary Deploying Packages Overloading Subprograms in PL/SQL Use the STANDARD Package Use Forward Declarations to solve Illegal Procedure Reference Implement Package Functions in SQL and Restrictions Persistent State of Packages Persistent State of a Package Cursor Copyright 2013, Oracle. All rights reserved. Page 4

11 Control side effects of PL/SQL Subprograms Invoke PL/SQL Tables of Records in Packages Implement Oracle-Supplied Packages in Application Development What are Oracle-Supplied Packages? Examples of some of the Oracle-Supplied Packages How does the DBMS_OUTPUT Package work? Use the UTL_FILE Package to Interact with Operating System Files Invoke the UTL_MAIL Package Write UTL_MAIL Subprograms Dynamic SQL The Execution Flow of SQL What is Dynamic SQL? Declare Cursor Variables Dynamically Executing a PL/SQL Block Configure Native Dynamic SQL to Compile PL/SQL Code How to invoke DBMS_SQL Package? Implement DBMS_SQL with a Parameterized DML Statement Dynamic SQL Functional Completeness Design Considerations for PL/SQL Code Standardize Constants and Exceptions Understand Local Subprograms Write Autonomous Transactions Implement the NOCOPY Compiler Hint Invoke the PARALLEL_ENABLE Hint The Cross-Session PL/SQL Function Result Cache The DETERMINISTIC Clause with Functions Usage of Bulk Binding to Improve Performance Triggers Describe Triggers Identify the Trigger Event Types and Body Business Application Scenarios for Implementing Triggers Create DML Triggers using the CREATE TRIGGER Statement and SQL Developer Identify the Trigger Event Types, Body, and Firing (Timing) Differences between Statement Level Triggers and Row Level Triggers Create Instead of and Disabled Triggers How to Manage, Test and Remove Triggers? Creating Compound, DDL, and Event Database Triggers What are Compound Triggers? Identify the Timing-Point Sections of a Table Compound Trigger Understand the Compound Trigger Structure for Tables and Views Implement a Compound Trigger to Resolve the Mutating Table Error Comparison of Database Triggers to Stored Procedures Create Triggers on DDL Statements Create Database-Event and System-Events Triggers System Privileges Required to Manage Triggers PL/SQL Compiler Copyright 2013, Oracle. All rights reserved. Page 5

12 What is the PL/SQL Compiler? Describe the Initialization Parameters for PL/SQL Compilation List the new PL/SQL Compile Time Warnings Overview of PL/SQL Compile Time Warnings for Subprograms List the benefits of Compiler Warnings List the PL/SQL Compile Time Warning Messages Categories Setting the Warning Messages Levels: Using SQL Developer, PLSQL_WARNINGS Initialization Parameter, and the DBM View Compiler Warnings: Using SQL Developer, SQL*Plus, or the Data Dictionary Views Manage Dependencies Overview of Schema Object Dependencies Query Direct Object Dependencies using the USER_DEPENDENCIES View Query an Object s Status Invalidation of Dependent Objects Display the Direct and Indirect Dependencies Fine-Grained Dependency Management in Oracle Database 12c Understand Remote Dependencies Recompile a PL/SQL Program Unit Copyright 2013, Oracle. All rights reserved. Page 6

13 Oracle University Contact Us: & Oracle Data Integrator 11g: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration platform that covers all data integration requirements from high-volume, high-performance batch loads, to event-driven integration processes and SOA-enabled data services. Oracle Data Integrator's Extract, Load, Transform (E-LT) architecture leverages disparate RDBMS engines to process and transform the data - the approach that optimizes performance, scalability and lowers overall solution costs. This offering details on how to use Oracle Data Integrator (ODI) to implement high-performance movement and transformation of data among various platforms. It also deals with usage of ODI graphical user interfaces that enable user to access different ODI components and resources that form ODI infrastructure. Using the graphical interfaces, you create and manage ODI repositories, which store configuration information about the IT infrastructure, the metadata for all applications, projects, models and other ODI artifacts. You also learn how to create the ODI Topology, organize ODI models and design ODI interfaces, procedures, packages and other objects. Learn To: Use Oracle Data Integrator to perform transformation of data among various platforms Design ODI Interfaces, Procedures, and Packages to perform ELT data transformations Administer ODI resources and set up security with ODI Learn to perform data integration and transformation among various platforms. Learn to use the ODI graphical interface to define procedures, packages, and ELT jobs. Learn to set up and maintain a secure, multi-user ODI environment. Implement Changed Data Capture with ODI Use ODI Web services and perform integration of ODI with SOA Benefits to You Improve performance and reduce integration costs across your organization's heterogeneous systems. Centralize data across databases using your new skills to perform data integration, design ODI interfaces, and setup ODI security. This course is based on Oracle Data Integrator 11g( ) Audience Business Analysts Data Modelers Data Warehouse Administrator Database Administrators SOA Architect Technical Consultant Related Training Required Prerequisites Copyright 2013, Oracle. All rights reserved. Page 1

14 Basic knowledge of ELT data processing Suggested Prerequisites Working knowledge of SQL Course Objectives Describe ODI Model concepts Describe architecture of Oracle Data Integrator 11g Apply ODI Topology concepts for data integration Design ODI Interfaces, Procedures, Packages, and Load Plans to perform ELT data transformations Explore, audit data, and enforce data quality with ODI Administer ODI resources and setup security with ODI Implement Changed Data Capture with ODI Use ODI Web services and perform integration of ODI with SOA Course Topics Introduction Identifying the Course Units What is Oracle Data Integrator? Why Oracle Data Integrator? Overview of ODI 11g Architecture Overview of ODI 11g Components About Graphical Modules Types of ODI Agents Overview of Oracle Data Integrator Repositories Administering ODI Repositories and Agents Administrating the ODI Repositories Creating Repository Storage Spaces Creating and Connecting to the Master Repository Creating and Connecting to the Work Repository Managing ODI Agents Creating a Physical Agent Launching a Listener, Scheduler and Web Agent Example of Load Balancing ODI Topology Concepts Overview of ODI Topology About Data Servers and Physical Schemas Defining the Physical Architecture Copyright 2013, Oracle. All rights reserved. Page 2

15 Defining the Logical Architecture Mapping Logical and Physical Resources Defining Agents Defining a Topology Planning the Topology Describing the Physical and Logical Architecture Overview of Topology Navigator Creating Physical Architecture Creating a Data Server Testing a Data Server Connection Creating a Physical Schema Creating Logical Architecture Overview of Logical Architecture and Context Views Linking the Logical and Physical Architecture Setting Up a New ODI Project Overview of ODI Projects Creating a New Project Using Folders Organizing Projects and Folders Understanding Knowledge Modules Exchanging ODI Objects and Sharing Global Objects Exporting and Importing Objects Using Markers Oracle Data Integrator Model Concepts What is a Model? Understanding Metadata in ODI Understanding Reverse Engineering Creating Models Organizing Models Creating Data stores Using Constraints in ODI Creating Keys and References Organizing ODI Models and Creating Data stores What is an Interface? Business Rules for Interfaces What is a Mapping? What is a Join? What is a Filter? What is a Constraint? What is a Staging Area? Creating a Basic Interface ODI Interface Concepts What is an Interface? Business Rules for Interfaces What is a Mapping, Filter, Join? Overview of Integration Process What is a Staging Area? Copyright 2013, Oracle. All rights reserved. Page 3

16 About Execution Location Using Knowledge Modules (KM) with ODI Interface Creating a Basic Interface Designing Interfaces Designing an Interface Multiple Source Data stores Creating Joins Filtering data Disabling Transformations Overview of the Flow Specifying the Staging Area Selecting Knowledge Modules Interfaces: Monitoring and Debugging Monitoring Interfaces Using Operator Viewing Sessions and Tasks How to Monitor Execution of an Interface How to Troubleshoot a Session Keys to Reviewing the Generated Code Working with Errors Tips for Preventing Errors Designing Interfaces: Advanced Topics Using Business Rules in Interfaces Overview of Business Rule Elements Using and Tracking Variables Using User Functions Using Substitution Methods Modifying a KM Showing Variable Values in Log Using RKM for Customized Reverse Engineering Using ODI procedures What is a Procedure? Examples of Procedures Creating Procedures Adding Commands Adding Options Running a Procedure Using Operator to View Results Using ODI Packages What is a package? Creating a package Executing a package Creating Advanced Packages Error handling Controlling an Execution Path Creating a Loop Using the Advanced tab Copyright 2013, Oracle. All rights reserved. Page 4

17 Managing ODI Scenarios and Versions What is a Scenario? Managing Scenarios with Load Plans Preparing Scenarios for Deployment Automating Scenario Management Scheduling the ODI Scenario Overview of ODI version management Using Version Browser and Version Comparison Tool Handling concurrent changes Enforcing Data Quality and Auditing Data with ODI Why Data Quality? When to Enforce Data Quality? Data Quality in Source Applications Data Quality Control in the Integration Process Data Quality in the Target Applications Enforcing Data Quality Exploring Your Data Auditing Data Quality Working with Changed Data Capture Overview of ODI version management Techniques of Changed Data Capture Changed Data Capture in ODI CDC Strategies and Infrastructure CDC Consistency Using CDC Viewing Data/Changed data Using Journalizing Administering ODI Resources: Advanced Topics Using Open Tools Installing Open Tools Using Open Tools in a Package Using Open Tools in a Procedure or in a KM Developing Your Own Open Tools Setting Up ODI Security Defining Security Policies Defining Password Policies Using Web Services and Integration of Oracle Data Integrator with SOA Web Services in Action Using Data Services Setting Up Data Services Testing Data Services Installing Public Web Services Using Public Web Services Invoking Web Services Integrating ODI with SOA Extending ODI with the SDK Using SDK Public Interfaces Copyright 2013, Oracle. All rights reserved. Page 5

18 Integrating through ODI SDK Examining SDK examples Copyright 2013, Oracle. All rights reserved. Page 6

19 Oracle University Contact Us: & Oracle Data Integrator 12c: New Features Duration: 1 Day What you will learn This Oracle Data Integrator workshop details the new features and techniques of using Oracle Data Integrator 12c (ODI) for implementing high-performance movement. Expert Oracle University instructors will help you explore transformation of data among various platforms. Learn To: Perform transformation of data among various platforms using Oracle Data Integrator 12c. Design ODI Mappings and Packages to perform ELT data transformations. Benefits to You Investing in this course will teach you how to improve performance and reduce integration costs across your organization's heterogeneous systems. Centralize data across databases using your new skills to perform data integration, design mappings, debug integration projects and enhance ODI security. Explore ODI Studio ODI Studio is the new declarative ODI12c flow-based user interface. Learn how to use it to administer the IT infrastructure and metadata, develop projects and for monitor executions. Efficient Data Transformation Learn how to use the Common Administration Model for the configuration of ODI agents, and how to design ODI mappings with various components, and how to use parallel target tables load and in-session parallelism for efficient data transformations. Oracle Warehouse Builder and Oracle GoldenGate For large enterprise deployments, there is almost always a need for enterprise data extraction, loading, and transformation. Taking this course will teach you how to implement integration of ODI in an Enterprise environment with products like Oracle Warehouse Builder and Oracle GoldenGate. ODI Security Learn how to enhance the ODI security by integration with OPSS Enterprise Roles. Important This course assumes you have a working knowledge of Oracle Data Integrator 11g. Audience Business Analysts Data Warehouse Developer Copyright 2013, Oracle. All rights reserved. Page 1

20 Database Administrators Process Developer Related Training Required Prerequisites Basic knowledge of ELT data processing Working knowledge of using ODI Suggested Prerequisites Oracle Data Integrator 11g: Integration and Administration Course Objectives Design ODI mappings and packages to perform ELT data transformations Implement multiple target loads and in-session parallelism Describe methods of integration of ODI 12c in Enterprise environment Perform debugging ODI mappings and packages using Step-by-Step debugger Become familiar with various ODI components Develop data transformation projects by using ODI 12c Declarative flow-based user interface Course Topics Introduction The Benefits of Using ODI 12c Overview of ODI 12g Architecture and Components The features of New ODI 12c User Interface and its Components Overview of ODI 12g New Features Developing Mapping in ODI 12c Creating Mappings with Various Components Creating Reusable Mappings Implementing Multiple Target Tables Loads Executing Mappings in Parallel Step-by-Step Debugger Benefits of Using Step-by Step Debugger Overview of the Features of Step-by-Step Debugger Debugging Mappings using the Debugger Debugging Packages using the Debugger Integration of ODI in Enterprise Environment and Using Common Administration Model Copyright 2013, Oracle. All rights reserved. Page 2

21 Overview of Methods of Integration of ODI in Enterprise Environment Integration of ODI with Manager Cloud Control Integration of ODI with Warehouse Builder Integration of ODI with Oracle GoldenGate Integration of ODI with OPSS Role Configuring ODI Agents using Common Administration Model Copyright 2013, Oracle. All rights reserved. Page 3

22 Oracle University Contact Us: Oracle Data Integrator 12c: Integration and Administration New Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration platform that covers all data integration requirements from high-volume, high-performance batch loads, to event-driven integration processes and SOA-enabled data services. Oracle Data Integrator's Extract, Load, Transform (E-LT) architecture leverages disparate RDBMS engines to process and transform the data - the approach that optimizes performance, scalability and lowers overall solution costs. Learn To: Use Oracle Data Integrator to perform transformation of data among various platforms. Design ODI Mappings, Procedures, and Packages to perform ELT data transformations. Administer ODI resources and set up security with ODI. Perform data integration and transformation among various platforms. Use the ODI graphical interface to define procedures, packages, and ELT jobs. Set up and maintain a secure, multi-user ODI environment. Implement Changed Data Capture with ODI. Use ODI Web services and perform integration of ODI with SOA. Benefits to You Improve performance and reduce integration costs across your organization's heterogeneous systems. Centralize data across databases using your new skills to perform data integration, design ODI Mappings, and set up ODI security. Implement High-Performance Movement and Transformation This offering details on how to use Oracle Data Integrator (ODI) 12c to implement high-performance movement and transformation of data among various platforms. ODI Graphical User Interface The training covers usage of ODI graphical user interfaces that enable users to access different ODI components and resources that form ODI infrastructure. ODI Repositories Using the graphical interfaces, you create and manage ODI repositories, which store configuration information about the IT infrastructure, the metadata for all applications, projects, models and other ODI artifacts. ODI Topology, Models, Mappings, and other You also learn how to create the ODI Topology, organize ODI models and design ODI Mappings, procedures, packages and other objects. This course is based on Oracle Data Integrator 12c (12.1.2) Copyright 2013, Oracle. All rights reserved. Page 1

23 Audience Business Analysts Data Modelers Data Warehouse Administrator Database Administrators SOA Architect Technical Consultant Related Training Required Prerequisites Basic knowledge of ELT data processing Suggested Prerequisites Working knowledge of SQL Course Objectives Describe ODI Model concepts Describe architecture of Oracle Data Integrator 12c Apply ODI Topology concepts for data integration Design ODI Mappings, Procedures, Packages, and Load Plans to perform ELT data transformations Explore, audit data, and enforce data quality with ODI Administer ODI resources and setup security with ODI Implement Changed Data Capture with ODI Use ODI Web services and perform integration of ODI with SOA Course Topics Introduction Identifying the Course Units What is Oracle Data Integrator? Why Oracle Data Integrator? Overview of ODI Architecture Overview of ODI Components About Graphical Modules Types of ODI Agents Overview of Oracle Data Integrator Repositories Administering ODI Repositories and Agents Administrating the ODI Repositories Copyright 2013, Oracle. All rights reserved. Page 2

24 Creating Repository Storage Spaces Creating and Connecting to the Master Repository Creating and Connecting to the Work Repository Managing ODI Agents Creating a Physical Agent Launching a Listener, Scheduler and Web Agent Example of Load Balancing ODI Topology Concepts Overview of ODI Topology About Data Servers and Physical Schemas Defining the Physical Architecture Defining the Logical Architecture Mapping Logical and Physical Resources Defining Agents Defining a Topology Planning the Topology Describing the Physical and Logical Architecture Overview of Topology Navigator Creating Physical Architecture Creating a Data Server Testing a Data Server Connection Creating a Physical Schema Creating Logical Architecture Overview of Logical Architecture and Context Views Linking the Logical and Physical Architecture Setting Up a New ODI Project Overview of ODI Projects Creating a New Project Creating and Maintaining Folders Organizing Projects and Folders Understanding Knowledge Modules Exchanging ODI Objects and Sharing Global Objects Exporting and Importing Objects Creating and Labeling with Markers Oracle Data Integrator Model Concepts What is a Model? Understanding Metadata in ODI Understanding Reverse Engineering Creating Models Organizing Models Creating Data stores Configuring Constraints in ODI Creating Keys and References Organizing ODI Models and Creating Data stores What is a Mapping? Business Rules for Mappings Creating a Basic Mapping Copyright 2013, Oracle. All rights reserved. Page 3

25 What is a Join? What is a Filter? What is a Constraint? What is a Staging Area? ODI Mapping Concepts What is a Mapping? Business Rules for Mapping What is a Mapping, a Filter, a Join? Overview of Integration Process What is a Staging Area? Execution Location Mapping with Knowledge Modules (KM) Creating an Intermediate Mapping Designing Mappings Designing a Mapping Multiple Source Data stores Creating Joins Filtering Data Disabling Transformations Overview of the Flow Specifying the Staging Area Selecting Knowledge Modules Mapping: Monitoring and Debugging Monitoring Mappings Creating Objects with Operator Viewing Sessions and Tasks How to Monitor Execution of a Mapping How to Troubleshoot a Session Keys to Reviewing the Generated Code Working with Errors Tips for Preventing Errors Designing Mappings: Advanced Topics Mapping with Business Rules Overview of Business Rule Elements Creating and Tracking Variables Creating User Functions Mapping Substitution Methods Modifying a KM Showing Variable Values in Log Customizing Reverse Engineering Using RKM Creating and Running ODI procedures What is a Procedure? Examples of Procedures Creating Procedures Adding Commands Adding Options Running a Procedure Copyright 2013, Oracle. All rights reserved. Page 4

26 Viewing Results with Operator Creating and Running ODI Packages What is a Package? Creating a Package Executing a Package Creating Advanced Packages Error Handling Controlling an Execution Path Creating a Loop Using the Advanced tab Managing ODI Scenarios and Versions What is a Scenario? Managing Scenarios with Load Plans Preparing Scenarios for Deployment Automating Scenario Management Scheduling the ODI Scenario Overview of ODI version management Handling concurrent changes Enforcing Data Quality and Auditing Data with ODI Why Data Quality? When to Enforce Data Quality? Data Quality in Source Applications Data Quality Control in the Integration Process Data Quality in the Target Applications Enforcing Data Quality Exploring Your Data Auditing Data Quality Working with Changed Data Capture Overview of ODI version management Techniques of Changed Data Capture Changed Data Capture in ODI CDC Strategies and Infrastructure CDC Consistency Creating Change Data Capture (CDC) Viewing Data/Changed data Journalizing Administering ODI Resources: Advanced Topics Using Open Tools Installing Open Tools Using Open Tools in a Package Using Open Tools in a Procedure or in a KM Developing Your Own Open Tools Setting Up ODI Security Defining Security Policies Defining Password Policies Creating Web Services and Integration of ODI with SOA Copyright 2013, Oracle. All rights reserved. Page 5

27 Web Services in Action Using Data Services Setting Up Data Services Testing Data Services Installing Public Web Services Using Public Web Services Invoking Web Services Integrating ODI with SOA Extending ODI with the SDK Coding SDK Public Interfaces Integrating through ODI SDK Examining SDK examples Copyright 2013, Oracle. All rights reserved. Page 6

28 Oracle University Contact Us: Oracle Data Integrator 12c: Advanced Integration and Development NEW Duration: 3 Days What you will learn This Oracle Data Integrator course covers advanced techniques for using Oracle Data Integrator 12c (ODI). You learn how to implement high-performance movement and transformation of data among various platforms. Learn how to: Perform data integration and transformation among various platforms using advance techniques. Design advanced ODI mappings, procedures, and packages to perform EL-T data transformations. Set up ODI security by implementing a strongly secured approach with non-generic profiles and external user authentication. Develop and customize Knowledge Modules with substitution methods and Java. Automate ODI tasks by using the Groovy script editor. Implement integration strategies with ODI by using best practices. Use ODI web services and perform integration of ODI in an enterprise environment and SOA. Benefits to You Improve performance and reduce integration costs across your organizations' heterogeneous systems. Centralize data across databases using your new skills to perform data integration, design advanced ODI mappings, set up ODI security, and automate ODI tasks. Administering the IT infrastructure and Metadata This course helps you learn how to use the ODI Studio for developing projects and models. Expert Oracle instructors will also explore how to monitor executions through instruction and hands-on exercises. Advanced ODI development for High-Performance Data Integration In addition, this course teaches you how to perform advanced ODI topology configuration. Learn how to design advanced ODI mappings, procedures, packages, and other objects for high-performance data integration among various technologies. Perform Extract Load Transform (EL-T) in an Enterprise Environment For enterprise SOA deployments, there is almost always a need for enterprise data extraction, transformation, and loading. By leveraging the native SOA architecture in Oracle Data Integrator, this course helps you perform EL-T from SOA applications. Copyright 2013, Oracle. All rights reserved. Page 1

29 You also learn how to implement the integration of ODI in an enterprise environment and in SOA. In addition, this course teaches you how to execute ODI transformation from a BPEL process. Apply Strongly Secured Approach Taking this course helps you learn how to enhance ODI security by applying the Strongly Secured Approach and by implementing External Authentication with LDAP. This course is based on Oracle Data Integrator 12c (12.1.3). Audience Business Analysts Data Modelers Data Warehouse Administrator Database Administrators SOA Architect Technical Consultant Related Training Required Prerequisites Oracle Data Integrator 12c: Integration and Administration New Oracle Data Integrator 12c: New Features Suggested Prerequisites Oracle Data Integrator 11g: Integration and Administration Oracle Data Integrator 12c: Integration and Administration New Oracle Data Integrator 12c: New Features Course Objectives Describe GoldenGate integration Design advanced integration mappings Automate ODI tasks using Groovy Enhance ODI security with strongly secured approach Expose ODI scenarios as web services Integrate ODI in enterprise environment and SOA Describe best practices for implementing integration strategies Describe various ODI integration patterns Copyright 2013, Oracle. All rights reserved. Page 2

30 Develop and enhance Knowledge Modules Describe BigData support Course Topics Developing ODI Knowledge Modules Overview of Different Types of KMs Guidelines for KM Developers Working with Substitution Methods Applying Various ODI Tags Implementing Java in KMs Troubleshooting and Debugging KMs Designing Advanced Integration Mappings Designing Integration Mappings: E-LT and ETL Mappings Selecting LKM and Mono-Connection (Single Technology) IKM Applying Best Practices for Integration Mapping Design Designing Reusable Mappings Implementing Lookups Combining Multiple Datasets Using Set-Based Operators Partitioning ODI Datastores Using Variables Describing a Variable's Scope Inserting Variables in Object Properties Using Variables within Variables Defining Variables in the Resource Name of a Datastore Applying Variables in Topology Objects Setting Variables as Start Up Parameters Tracking Variables Using Groovy in ODI Interacting Programmatically with ODI Overview of ODI SDK Introduction to Groovy Using Groovy Editor Automating Development Tasks with Groovy Using Complex Files What are Complex Files Determining Technical Requirements for Complex Files Project Applying nxsd Schema: an Example Setting up the Topology for Complex Files Creating and Reverse-Engineering a Complex Files Model Designing a Mapping with Complex Files Implementing JSON files Enhancing ODI Security Copyright 2013, Oracle. All rights reserved. Page 3

31 Overview of ODI Security Best Practices for Enhancing ODI Security Applying Non-Generic Profiles Configuring External Authentication Configuring LDAP for External Authentication with ODI Integration of ODI in Enterprise Environment Configuring Java EE Agent Monitoring ODI Environment with Enterprise Manager Integration of ODI in SOA Working with Web Services with ODI Overview of Public Web Services Invoking Web Services from ODI Exposing ODI Scenario as a Web Service Configuring the OdiInvokeWebService Tool Executing an ODI Scenario from a BPEL Process in SOA Choosing Integration Strategies: Best Practices Selecting Integration Strategies Loading and Integration Patterns Selecting Staging Area Location Working with Slowly Changing Dimensions (SCD) Working with Changed Data Capture Using ODI with Oracle GoldenGate Locate OGG/ODI VM for further research ODI and Big Data Describe Big Data concepts Contrast Hadoop, NoSQL, Apache, Hive, HBase, HDFS Implement ODI mapping for Big Data to Oracle SQL Locate BigDataLite VM for further research Copyright 2013, Oracle. All rights reserved. Page 4

Oracle Database: SQL and PL/SQL Fundamentals NEW

Oracle Database: SQL and PL/SQL Fundamentals NEW 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 fundamentals of SQL and PL/SQL along with the

More information

Oracle Database: Program with PL/SQL

Oracle Database: Program with PL/SQL Oracle University Contact Us: + 420 2 2143 8459 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

More information

Oracle Database: Program with PL/SQL Ed 2

Oracle Database: Program with PL/SQL Ed 2 Oracle University Contact Us: +38 61 5888 820 Oracle Database: Program with PL/SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database: Program with PL/SQL training starts with an introduction

More information

Oracle Database: SQL and PL/SQL Fundamentals Ed 2

Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Oracle Database: SQL and PL/SQL Fundamentals Ed 2 Duration: 5 Days What you will learn This Oracle Database: SQL and PL/SQL Fundamentals

More information

Conditionally control code flow (loops, control structures). Create stored procedures and functions.

Conditionally control code flow (loops, control structures). Create stored procedures and functions. TEMARIO Oracle Database: Program with PL/SQL Ed 2 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

More information

Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days

Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days Oracle Database 12c R2: Program with PL/SQL Ed 2 Duration: 5 Days This Database Program with PL/SQL training shows you how to develop stored procedures, functions, packages and database triggers. You'll

More information

Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led

Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led Oracle Database 12c: Program with PL/SQL Duration: 5 Days Method: Instructor-Led Course Description This training starts with an introduction to PL/SQL and then explores the benefits of this powerful programming

More information

Oracle Database 11g: SQL and PL/SQL Fundamentals

Oracle Database 11g: SQL and PL/SQL Fundamentals Oracle University Contact Us: +33 (0) 1 57 60 20 81 Oracle Database 11g: SQL and PL/SQL Fundamentals Duration: 5 Days What you will learn In this course, students learn the fundamentals of SQL and PL/SQL

More information

Oracle Database: Introduction to SQL/PLSQL Accelerated

Oracle Database: Introduction to SQL/PLSQL Accelerated Oracle University Contact Us: Landline: +91 80 67863899 Toll Free: 0008004401672 Oracle Database: Introduction to SQL/PLSQL Accelerated Duration: 5 Days What you will learn This Introduction to SQL/PLSQL

More information

Oracle - Oracle Database: Program with PL/SQL Ed 2

Oracle - Oracle Database: Program with PL/SQL Ed 2 Oracle - Oracle Database: Program with PL/SQL Ed 2 Code: Lengt h: URL: DB-PLSQL 5 days View Online This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then explores

More information

Introduction to SQL/PLSQL Accelerated Ed 2

Introduction to SQL/PLSQL Accelerated Ed 2 Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 67863102 Introduction to SQL/PLSQL Accelerated Ed 2 Duration: 5 Days What you will learn This Introduction to SQL/PLSQL Accelerated course

More information

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant

Oracle Developer Track Course Contents. Mr. Sandeep M Shinde. Oracle Application Techno-Functional Consultant Oracle Developer Track Course Contents Sandeep M Shinde Oracle Application Techno-Functional Consultant 16 Years MNC Experience in India and USA Trainer Experience Summary:- Sandeep M Shinde is having

More information

Oracle Database: SQL and PL/SQL Fundamentals

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

More information

Oracle Database 11g: Program with PL/SQL Release 2

Oracle Database 11g: Program with PL/SQL Release 2 Oracle University Contact Us: +41- (0) 56 483 31 31 Oracle Database 11g: Program with PL/SQL Release 2 Duration: 5 Days What you will learn This course introduces students to PL/SQL and helps them understand

More information

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus

ORACLE TRAINING. ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL. Oracle SQL Training Syllabus ORACLE TRAINING ORACLE Training Course syllabus ORACLE SQL ORACLE PLSQL Oracle SQL Training Syllabus Introduction to Oracle Database List the features of Oracle Database 11g Discuss the basic design, theoretical,

More information

Oracle Data Integrator 12c: Integration and Administration

Oracle Data Integrator 12c: Integration and Administration Oracle University Contact Us: +27 (0)11 319-4111 Oracle Data Integrator 12c: Integration and Administration Duration: 5 Days What you will learn Oracle Data Integrator is a comprehensive data integration

More information

Oracle Database 11g: Program with PL/SQL

Oracle Database 11g: Program with PL/SQL Oracle University Contact: +31 (0)30 669 9244 Oracle Database 11g: Program with PL/SQL Duration: 5 Dagen What you will learn This course introduces students to PL/SQL and helps them understand the benefits

More information

IZ0-144Oracle 11g PL/SQL Certification (OCA) training

IZ0-144Oracle 11g PL/SQL Certification (OCA) training IZ0-144Oracle 11g PL/SQL Certification (OCA) training Advanced topics covered in this course: Managing Dependencies of PL/SQL Objects Direct and Indirect Dependencies Using the PL/SQL Compiler Conditional

More information

Oracle PLSQL Training Syllabus

Oracle PLSQL Training Syllabus Oracle PLSQL Training Syllabus Introduction Course Objectives Course Agenda Human Resources (HR) Schema Introduction to SQL Developer Introduction to PL/SQL PL/SQL Overview Benefits of PL/SQL Subprograms

More information

Oracle Data Integrator 12c: Integration and Administration

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

More information

Oracle Data Integrator 12c: Integration and Administration

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

More information

Oracle Database: Introduction to SQL Ed 2

Oracle Database: Introduction to SQL Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database: Introduction to SQL Ed 2 Duration: 5 Days What you will learn This Oracle Database 12c: Introduction to SQL training helps you write subqueries,

More information

SQL+PL/SQL. Introduction to SQL

SQL+PL/SQL. Introduction to SQL SQL+PL/SQL CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database Categorize

More information

Oracle Database: Program with PL/SQL Ed 2 Erlernen Sie diese leistungsstarken Programmiersprache

Oracle Database: Program with PL/SQL Ed 2 Erlernen Sie diese leistungsstarken Programmiersprache Oracle Database: Program with PL/SQL Ed 2 Erlernen Sie diese leistungsstarken Programmiersprache Preis: This Oracle Database: Program with PL/SQL training starts with an introduction to PL/SQL and then

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: +27 (0)11 319-4111 Oracle Database: Introduction to SQL Duration: 5 Days What you will learn This Oracle Database: Introduction to SQL training helps you write subqueries,

More information

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business The Database Programming with PL/SQL course introduces students to the procedural language used to extend SQL in a programatic manner. This course outline

More information

Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features

Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features Oracle Data Integrator 12c: ETL Integration Bootcamp and New Features Training Details Training Time : 18 Hours Capacity : 16 Prerequisites : There are no prerequisites for this course. About Training

More information

5. Single-row function

5. Single-row function 1. 2. Introduction Oracle 11g Oracle 11g Application Server Oracle database Relational and Object Relational Database Management system Oracle internet platform System Development Life cycle 3. Writing

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle University Contact Us: (+202) 35 35 02 54 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

More information

AO3 - Version: 2. Oracle Database 11g SQL

AO3 - Version: 2. Oracle Database 11g SQL AO3 - Version: 2 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 against

More information

Oracle PLSQL. Course Summary. Duration. Objectives

Oracle PLSQL. Course Summary. Duration. Objectives Oracle PLSQL Course Summary Use conditional compilation to customize the functionality in a PL/SQL application without removing any source code Design PL/SQL packages to group related constructs Create

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

Table of Contents. PDF created with FinePrint pdffactory Pro trial version

Table of Contents. PDF created with FinePrint pdffactory Pro trial version Table of Contents Course Description The SQL Course covers relational database principles and Oracle concepts, writing basic SQL statements, restricting and sorting data, and using single-row functions.

More information

Oracle Database: Program with PL/SQL

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

More information

ORACLE DEV 11G CURRICULUM. Introduction to SQL

ORACLE DEV 11G CURRICULUM. Introduction to SQL ORACLE DEV 11G CURRICULUM Introduction to SQL Introduction to Oracle Database List the features of Oracle Database 12c Discuss the basic design, theoretical, and physical aspects of a relational database

More information

ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR

ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR ORACLE CERTIFIED ASSOCIATE ORACLE DATABASE 11g ADMINISTRATOR The process of becoming Oracle Database certified broadens your knowledge and skills by exposing you to a wide array of important database features,

More information

Oracle Syllabus Course code-r10605 SQL

Oracle Syllabus Course code-r10605 SQL Oracle Syllabus Course code-r10605 SQL Writing Basic SQL SELECT Statements Basic SELECT Statement Selecting All Columns Selecting Specific Columns Writing SQL Statements Column Heading Defaults Arithmetic

More information

Contents I Introduction 1 Introduction to PL/SQL iii

Contents I Introduction 1 Introduction to PL/SQL iii Contents I Introduction Lesson Objectives I-2 Course Objectives I-3 Human Resources (HR) Schema for This Course I-4 Course Agenda I-5 Class Account Information I-6 Appendixes Used in This Course I-7 PL/SQL

More information

Oracle Database: Introduction to SQL

Oracle Database: Introduction to SQL Oracle Database: Introduction to SQL What you will learn Understanding the basic concepts of relational databases ensure refined code by developers. This course helps the participants to write subqueries,

More information

Oracle Database 11g: Introduction to SQLRelease 2

Oracle Database 11g: Introduction to SQLRelease 2 Oracle University Contact Us: 0180 2000 526 / +49 89 14301200 Oracle Database 11g: Introduction to SQLRelease 2 Duration: 5 Days What you will learn In this course students learn the concepts of relational

More information

1Z Oracle Database 11g - Program with PL/SQL Exam Summary Syllabus Questions

1Z Oracle Database 11g - Program with PL/SQL Exam Summary Syllabus Questions 1Z0-144 Oracle Database 11g - Program with PL/SQL Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-144 Exam on Oracle Database 11g - Program with PL/SQL... 2 Oracle 1Z0-144 Certification

More information

Oracle Database 10g: Introduction to SQL

Oracle Database 10g: Introduction to SQL ORACLE UNIVERSITY CONTACT US: 00 9714 390 9000 Oracle Database 10g: Introduction to SQL Duration: 5 Days What you will learn This course offers students an introduction to Oracle Database 10g database

More information

ORANET- Course Contents

ORANET- Course Contents ORANET- Course Contents 1. Oracle 11g SQL Fundamental-l 2. Oracle 11g Administration-l 3. Oracle 11g Administration-ll Oracle 11g Structure Query Language Fundamental-l (SQL) This Intro to SQL training

More information

Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia

Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia Topics Fundamentals of PL/SQL, Integration with PROIV SuperLayer and use within Glovia 1. Creating a Database Alias 2. Introduction to SQL Relational Database Concept Definition of Relational Database

More information

Question Bank PL/SQL Fundamentals-I

Question Bank PL/SQL Fundamentals-I Question Bank PL/SQL Fundamentals-I UNIT-I Fundamentals of PL SQL Introduction to SQL Developer, Introduction to PL/SQL, PL/SQL Overview, Benefits of PL/SQL, Subprograms, Overview of the Types of PL/SQL

More information

Table of Contents. Oracle SQL PL/SQL Training Courses

Table of Contents. Oracle SQL PL/SQL Training Courses Table of Contents Overview... 7 About DBA University, Inc.... 7 Eligibility... 8 Pricing... 8 Course Topics... 8 Relational database design... 8 1.1. Computer Database Concepts... 9 1.2. Relational Database

More information

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL:

Oracle 12C DBA Online Training. Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: Course Modules of Oracle 12C DBA Online Training: 1 Oracle Database 12c: Introduction to SQL: A. Introduction Course Objectives, Course Agenda and Appendixes Used in this Course Overview of Oracle Database

More information

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data

1 Writing Basic SQL SELECT Statements 2 Restricting and Sorting Data 1 Writing Basic SQL SELECT Statements Objectives 1-2 Capabilities of SQL SELECT Statements 1-3 Basic SELECT Statement 1-4 Selecting All Columns 1-5 Selecting Specific Columns 1-6 Writing SQL Statements

More information

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I

Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I Oracle Data Integrator 11g: Integration and Administration Student Guide - Volume I D64974GC20 Edition 2.0 September 2012 D78954 Author Richard Green Technical Contributors and Reviewers Alex Kotopoulis

More information

COWLEY COLLEGE & Area Vocational Technical School

COWLEY COLLEGE & Area Vocational Technical School COWLEY COLLEGE & Area Vocational Technical School COURSE PROCEDURE FOR Student Level: This course is open to students on the college level in either the freshman or sophomore year. Catalog Description:

More information

Oracle PL SQL Training & Certification

Oracle PL SQL Training & Certification About Intellipaat Intellipaat is a fast-growing professional training provider that is offering training in over 150 most sought-after tools and technologies. We have a learner base of 600,000 in over

More information

ORACLE DATABASE 12C INTRODUCTION

ORACLE DATABASE 12C INTRODUCTION SECTOR / IT NON-TECHNICAL & CERTIFIED TRAINING COURSE In this training course, you gain the skills to unleash the power and flexibility of Oracle Database 12c, while gaining a solid foundation of database

More information

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile

Proje D2K. CMM (Capability Maturity Model) level Project Standard:- Corporate Trainer s Profile D2K Corporate Trainer s Profile Corporate Trainers are having the experience of 4 to 12 years in development, working with TOP CMM level 5 comapnies (Project Leader /Project Manager ) qualified from NIT/IIT/IIM

More information

Oracle Data Integrator 11g: Advanced Integration and Development Student Guide

Oracle Data Integrator 11g: Advanced Integration and Development Student Guide Oracle Data Integrator 11g: Advanced Integration and Development Student Guide D78191GC10 Edition 1.0 Febraury 2013 D80589 Author Viktor Tchemodanov Technical Contributors and Reviewers Denis Gray Alex

More information

ETL TESTING TRAINING

ETL TESTING TRAINING ETL TESTING TRAINING Retrieving Data using the SQL SELECT Statement Capabilities of the SELECT statement Arithmetic expressions and NULL values in the SELECT statement Column aliases Use of concatenation

More information

Introduction to Computer Science and Business

Introduction to Computer Science and Business Introduction to Computer Science and Business This is the second portion of the Database Design and Programming with SQL course. In this portion, students implement their database design by creating a

More information

Oracle SQL & PL SQL Course

Oracle SQL & PL SQL Course Oracle SQL & PL SQL Course Complete Practical & Real-time Training Job Support Complete Practical Real-Time Scenarios Resume Preparation Lab Access Training Highlights Placement Support Support Certification

More information

Oracle SQL Course Content

Oracle SQL Course Content Oracle SQL Course Content Introduction Describe the features of Oracle Database 12c Describe the salient features of Oracle Cloud 12c Explain the theoretical and physical aspects of a relational database

More information

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time

A Unit of SequelGate Innovative Technologies Pvt. Ltd. All Training Sessions are Completely Practical & Real-time SQL Basics & PL-SQL Complete Practical & Real-time Training Sessions A Unit of SequelGate Innovative Technologies Pvt. Ltd. ISO Certified Training Institute Microsoft Certified Partner Training Highlights

More information

Oracle Database 11g: SQL Fundamentals I

Oracle Database 11g: SQL Fundamentals I Oracle Database 11g: SQL Fundamentals I Volume I Student Guide D49996GC11 Edition 1.1 April 2009 D59980 Authors Puja Singh Brian Pottle Technical Contributors and Reviewers Claire Bennett Tom Best Purjanti

More information

COURSE CONTENT. ORACLE 10g/11g DBA. web: call: (+91) / 400,

COURSE CONTENT. ORACLE 10g/11g DBA.   web:  call: (+91) / 400, COURSE CONTENT ORACLE 10g/11g DBA 1. Introduction (Database Architecture) Oracle 10g: Database Describe course objectives Explore the Oracle 10g database architecture 2: Installing the Oracle Database

More information

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL]

Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Chapter Overview of PL/SQL Programs Control Statements Using Loops within PLSQL Oracle PL/SQL - 12c & 11g [Basic PL/SQL & Advanced PL/SQL] Table of Contents Describe a PL/SQL program construct List the

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Student Guide Volume I D17108GC21 Edition 2.1 December 2006 D48183 Authors Chaitanya Koratamaddi Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott

More information

Oracle12c Release 1 PL/SQL (3 Days)

Oracle12c Release 1 PL/SQL (3 Days) Oracle12c Release 1 PL/SQL (3 Days) www.peaklearningllc.com Course Description This course provides a complete, hands-on, comprehensive introduction to PL/SQL including the use of both SQL Developer and

More information

Data Integration and ETL with Oracle Warehouse Builder

Data Integration and ETL with Oracle Warehouse Builder Oracle University Contact Us: 1.800.529.0165 Data Integration and ETL with Oracle Warehouse Builder Duration: 5 Days What you will learn Participants learn to load data by executing the mappings or the

More information

Sql Server Syllabus. Overview

Sql Server Syllabus. Overview Sql Server Syllabus Overview This SQL Server training teaches developers all the Transact-SQL skills they need to create database objects like Tables, Views, Stored procedures & Functions and triggers

More information

Oracle Database 10g: SQL Fundamentals I

Oracle Database 10g: SQL Fundamentals I Oracle Database 10g: SQL Fundamentals I Volume I Student Guide D17108GC11 Edition 1.1 August 2004 D39766 Author Nancy Greenberg Technical Contributors and Reviewers Wayne Abbott Christian Bauwens Perry

More information

Oracle Database 12c: Use XML DB

Oracle Database 12c: Use XML DB Oracle University Contact Us: 55-800-891-6502 Oracle Database 12c: Use XML DB Duration: 5 Days What you will learn This Oracle Database 12c: Use XML DB training allows you to deep dive into the key features

More information

Oracle Database 12c SQL Fundamentals

Oracle Database 12c SQL Fundamentals Course Overview This course takes a unique approach to SQL training in that it incorporates data modeling theory, relational database theory, graphical depictions of theoretical concepts and numerous examples

More information

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model

normalization are being violated o Apply the rule of Third Normal Form to resolve a violation in the model Database Design Section1 - Introduction 1-1 Introduction to the Oracle Academy o Give examples of jobs, salaries, and opportunities that are possible by participating in the Academy. o Explain how your

More information

Course Outline and Objectives: Database Programming with SQL

Course Outline and Objectives: Database Programming with SQL Introduction to Computer Science and Business Course Outline and Objectives: Database Programming with SQL This is the second portion of the Database Design and Programming with SQL course. In this portion,

More information

Oracle BI 11g R1: Build Repositories

Oracle BI 11g R1: Build Repositories Oracle University Contact Us: + 36 1224 1760 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 Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle University Contact Us: +40 21 3678820 Oracle Database 12c: Administration Workshop Ed 2 Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about

More information

Oracle Database 12c: Administration Workshop Ed 2 NEW

Oracle Database 12c: Administration Workshop Ed 2 NEW Oracle Database 12c: Administration Workshop Ed 2 NEW Duration: 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will

More information

Course Overview on Oracle 11g Database Administration (OCP)

Course Overview on Oracle 11g Database Administration (OCP) Course Overview on Oracle 11g Database Administration (OCP) Course Description Oracle Database 11g Administrator Certified Professionals have the skills and expertise to manage the Oracle 11g Database

More information

20461: Querying Microsoft SQL Server

20461: Querying Microsoft SQL Server 20461: Querying Microsoft SQL Server Length: 5 days Audience: IT Professionals Level: 300 OVERVIEW This 5 day instructor led course provides students with the technical skills required to write basic Transact

More information

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms

Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Oracle University Contact Us: 00 9714 390 9050 Oracle Fusion Middleware 11g: Build Applications with Oracle Forms Duration: 5 Days What you will learn This course is also suitable for customers using Forms

More information

Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint

Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint Preface p. xv Introduction p. 1 The Logical and Physical View of Tables p. 1 Database Types p. 4 NULLs p. 6 DDL and DML Statements p. 7 Column and Table Constraint Clauses p. 7 Sample Database p. 9 A Quick

More information

MySQL for Developers Ed 3

MySQL for Developers Ed 3 Oracle University Contact Us: 1.800.529.0165 MySQL for Developers Ed 3 Duration: 5 Days What you will learn This MySQL for Developers training teaches developers how to plan, design and implement applications

More information

EDUVITZ TECHNOLOGIES

EDUVITZ TECHNOLOGIES EDUVITZ TECHNOLOGIES Oracle Course Overview Oracle Training Course Prerequisites Computer Fundamentals, Windows Operating System Basic knowledge of database can be much more useful Oracle Training Course

More information

Microsoft Querying Microsoft SQL Server 2014

Microsoft Querying Microsoft SQL Server 2014 1800 ULEARN (853 276) www.ddls.com.au Microsoft 20461 - Querying Microsoft SQL Server 2014 Length 5 days Price $4290.00 (inc GST) Version D Overview Please note: Microsoft have released a new course which

More information

SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM

SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM On a Mission to Transform Talent SEF DATABASE FOUNDATION ON ORACLE COURSE CURRICULUM Table of Contents Module 1: Introduction to Linux & RDBMS (Duration: 1 Week)...2 Module 2: Oracle SQL (Duration: 3 Weeks)...3

More information

MCSA SQL SERVER 2012

MCSA SQL SERVER 2012 MCSA SQL SERVER 2012 1. Course 10774A: Querying Microsoft SQL Server 2012 Course Outline Module 1: Introduction to Microsoft SQL Server 2012 Introducing Microsoft SQL Server 2012 Getting Started with SQL

More information

Oracle Data Integrator: Administration and Development Volume I Student Guide

Oracle Data Integrator: Administration and Development Volume I Student Guide Oracle Data Integrator: Administration and Development Volume I Student Guide D48459GC30 Edition 3.0 December 2007 D53463 Authors Laura Hofman Miquel FX Nicolas Technical Contributor and Reviewer Sharath

More information

Oracle Database 12c: Administration Workshop Ed 2

Oracle Database 12c: Administration Workshop Ed 2 Oracle Database 12c: Administration Workshop Ed 2 Duration 5 Days What you will learn The Oracle Database 12c: Administration Workshop will teach you about the Oracle Database architecture. You will discover

More information

T-SQL Training: T-SQL for SQL Server for Developers

T-SQL Training: T-SQL for SQL Server for Developers Duration: 3 days T-SQL Training Overview T-SQL for SQL Server for Developers training teaches developers all the Transact-SQL skills they need to develop queries and views, and manipulate data in a SQL

More information

Querying Microsoft SQL Server

Querying Microsoft SQL Server Querying Microsoft SQL Server Course 20461D 5 Days Instructor-led, Hands-on Course Description This 5-day instructor led course is designed for customers who are interested in learning SQL Server 2012,

More information

MIS NETWORK ADMINISTRATOR PROGRAM

MIS NETWORK ADMINISTRATOR PROGRAM NH107-7475 SQL: Querying and Administering SQL Server 2012-2014 136 Total Hours 97 Theory Hours 39 Lab Hours COURSE TITLE: SQL: Querying and Administering SQL Server 2012-2014 PREREQUISITE: Before attending

More information

ADVANTAGES. Via PL/SQL, all sorts of calculations can be done quickly and efficiently without use of Oracle engine.

ADVANTAGES. Via PL/SQL, all sorts of calculations can be done quickly and efficiently without use of Oracle engine. 1 PL/SQL INTRODUCTION SQL does not have procedural capabilities. SQL does not provide the programming techniques of condition checking, looping and branching that is required for data before permanent

More information

COURSE OUTLINE: Querying Microsoft SQL Server

COURSE OUTLINE: Querying Microsoft SQL Server Course Name 20461 Querying Microsoft SQL Server Course Duration 5 Days Course Structure Instructor-Led (Classroom) Course Overview This 5-day instructor led course provides students with the technical

More information

AVANTUS TRAINING PTE LTD

AVANTUS TRAINING PTE LTD [MS20461]: Querying Microsoft SQL Server 2014 Length : 5 Days Audience(s) : IT Professionals Level : 300 Technology : SQL Server Delivery Method : Instructor-led (Classroom) Course Overview This 5-day

More information

CO Oracle Database 12c: Advanced PL/SQL

CO Oracle Database 12c: Advanced PL/SQL CO-80343 Oracle Database 12c: Advanced PL/SQL Summary Duration 3 Days Audience Application Developers and Database Administrators Level Professional Technology Oracle Database 12c Delivery Method Instructor-led

More information

QUERYING MICROSOFT SQL SERVER COURSE OUTLINE. Course: 20461C; Duration: 5 Days; Instructor-led

QUERYING MICROSOFT SQL SERVER COURSE OUTLINE. Course: 20461C; Duration: 5 Days; Instructor-led CENTER OF KNOWLEDGE, PATH TO SUCCESS Website: QUERYING MICROSOFT SQL SERVER Course: 20461C; Duration: 5 Days; Instructor-led WHAT YOU WILL LEARN This 5-day instructor led course provides students with

More information

Certification Exam Preparation Seminar: Oracle Database SQL

Certification Exam Preparation Seminar: Oracle Database SQL Oracle University Contact Us: 0800 891 6502 Certification Exam Preparation Seminar: Oracle Database SQL Duration: 1 Day What you will learn This video seminar Certification Exam Preparation Seminar: Oracle

More information

ORACLE: PL/SQL Programming

ORACLE: PL/SQL Programming %ROWTYPE Attribute... 4:23 %ROWTYPE... 2:6 %TYPE... 2:6 %TYPE Attribute... 4:22 A Actual Parameters... 9:7 Actual versus Formal Parameters... 9:7 Aliases... 8:10 Anonymous Blocks... 3:1 Assigning Collection

More information

Learn Well Technocraft

Learn Well Technocraft Note: We are authorized partner and conduct global certifications for Oracle and Microsoft. The syllabus is designed based on global certification standards. This syllabus prepares you for Oracle global

More information

ORACLE TRAINING CURRICULUM. Relational Databases and Relational Database Management Systems

ORACLE TRAINING CURRICULUM. Relational Databases and Relational Database Management Systems ORACLE TRAINING CURRICULUM Relational Database Fundamentals Overview of Relational Database Concepts Relational Databases and Relational Database Management Systems Normalization Oracle Introduction to

More information

Querying Microsoft SQL Server 2012/2014

Querying Microsoft SQL Server 2012/2014 Page 1 of 14 Overview 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 is the foundation

More information

Oracle Database 11g: Administer a Data Warehouse

Oracle Database 11g: Administer a Data Warehouse Oracle Database 11g: Administer a Data Warehouse Duration: 4 Days What you will learn This course will help you understand the basic concepts of administering a data warehouse. You'll learn to use various

More information

Oracle. SQL(Structured Query Language) Introduction of DBMS. Build In Function. Introduction of RDBMS. Grouping the Result of a Query

Oracle. SQL(Structured Query Language) Introduction of DBMS. Build In Function. Introduction of RDBMS. Grouping the Result of a Query Oracle SQL(Structured Query Language) Introduction of DBMS Approach to Data Management Introduction to prerequisites File and File system Disadvantages of file system Introduction to TOAD and oracle 11g/12c

More information