Oracle PL/SQL Programming Fundamentals LiveLessons

Video description

4+ Hours of Video Instruction

Overview

Oracle PL/SQL Programming Fundamentals LiveLessons covers the basics of Oracle's language extension for SQL and the Oracle relational database. The focus is to give students with a working knowledge of SQL the ability to develop Oracle procedures, functions, and packages using the PL/SQL language.

Description

In this LiveLessons course, Oracle ACE Director Dan Hotka will teach you how to work with existing code and create new programs. Along the way, you will learn both conditional and looping syntax and techniques, error handling and error processing, plus how to work with script files, procedures, functions and packages (a collection of procedures and functions). This hands-on course also covers how to use the PL/SQL debugger and the PL/SQL profiler and how to apply PL/SQL performance tips.

The source code repository for this LiveLesson can be downloaded from www.informit.com/title/9780134214443.

About the Instructor

Dan Hotka is a training specialist and an Oracle ACE director who has more than 37 years in the computer industry and more than 31 years of experience with Oracle products. His experience with the Oracle RDBMS dates back to the Oracle V4.0 days. Dan enjoys sharing his knowledge of the Oracle RDBMS. Dan is well published with 12 Oracle books and well over 200 published articles. He is also the video author for Oracle SQL Performance Tuning for Developers LiveLessons. He is frequently published in Oracle trade journals, regularly blogs, and speaks at Oracle conferences and user groups around the world. Visit his website at www.DanHotka.com.

Skill Level

  • Beginner

Learn How To

  • Use the PL/SQL programming language
  • Understand both conditional and looping syntax and techniques
  • Understand error handling and error processing
  • Work with script files, procedures, functions and packages (a collection of procedures and functions)
  • Use two useful tools: PL/SQL debugger and the PL/SQL profiler
  • Understand additional PL/SQL performance tips

Who Should Take This Course

  • Oracle programmers
  • People with a need to be able to read PL/SQL code

Course Requirements

  • Working knowledge of the SQL query language

Table of Contents

Introduction

Lesson 1: PL/SQL Course Overview covers the course pre-requisites, database objects, and the tools that are used throughout these lessons.

Lesson 2: Oracle PL/SQL Overview reviews the Oracle RDBMS architecture from a PL/SQL tuning point of view. This information is referenced throughout the course. The lesson then introduces the major components of the PL/SQL programming environment.

Lesson 3: PL/SQL Basics and Variables covers the basics of PL/SQL and provides a working knowledge of PL/SQL variables.

Lesson 4: Logic Flow covers flow control and PL/SQL starting with IF/THEN/ELSE logic and the useful CASE statement. Then, it introduces the attendee to the Looping logic.

Lesson 5: PL/SQL Cursors introduces you to PL/SQL cursor management. It covers implicit cursors and explores explicit cursors.

Lesson 6: PL/SQL Exception Handling begins with an introduction to PL/SQL exception handling. It covers the basic exception clause syntax, then covers implicit and explicit error handling. Next, it shows useful techniques such as using SQLCODE and SQLERRM. The lesson ends with the coverage on User named and application exceptions.

Lesson 7: PL/SQL Procedures and Functions begins with an introduction to named blocks or PL/SQL procedures and functions. It explores the PL/SQL procedure basic syntax and examines the PL/SQL function basic syntax. The remainder of the lessons illustrates useful examples and parameter passing.

Lesson 8: PL/SQL Packages begins with an introduction to PL/SQL packages. It then covers the syntax and executing code in packages.

Lesson 9: PL/SQL Triggers first introduces PL/SQL Triggers, then explores the syntax for these triggers. Next, it covers the restrictions and order of processing and concludes with useful examples and tips.

Lesson 10: PL/SQL New Features covers some of the useful PL/SQL new features introduced over the years.

Lesson 11: PL/SQL Collections explores PL/SQL collections, or array processing. It introduces what a collection is and the three types that PL/SQL supports, explores the syntax of the three collection types, and shows code examples for each. The last section is the gas pedal for collections: bulk binding. This syntax allows for collections to be rapidly populated from Oracle database tables.

Lesson 12: PL/SQL Debugger, PL/SQL Profiler, PL/SQL Tuning Tips completes the PL/SQL story with an introduction of the PL/SQL debugger, PL/SQL profiler, and a lecture on PL/SQL tuning tips. Next it covers both the TOAD and the SQL developer debuggers including a live demonstration of both debuggers. Then it details the PL/SQL profiler and provides live demonstrations of both the Toad PL/SQL profiler and a character-mode PL/SQL profiler using SQL*Plus. The lesson concludes with some useful PL/SQL coding tips.

Summary

About LiveLessons Video Training

The LiveLessons Video Training series publishes hundreds of hands-on, expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. This professional and personal technology video series features world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, IBM Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home and Office Technologies, Business and Management, and more. View all LiveLessons on InformIT at: http://www.informit.com/livelessons

Table of contents

  1. Introduction
    1. Oracle PL/SQL Programming Fundamentals LiveLessons: Introduction
  2. Lesson 1: PL/SQL Course Overview
    1. Learning Objectives
    2. 1.1 Understand the course pre-requisites
    3. 1.2 Learn the Oracle database objects to be used in this course
    4. 1.3 Review the command-line SQL*Plus tool
    5. 1.4 Review SQL Developer tool
    6. 1.5 Review TOAD tool
    7. Put it all together
  3. Lesson 2: Oracle PL/SQL Overview
    1. Learning Objectives
    2. 2.1 Review Oracle architecture
    3. 2.2 Review PL/SQL overview
    4. Put it all together
  4. Lesson 3: PL/SQL Basics and Variables
    1. Learning Objectives
    2. 3.1 Explore PL/SQL basics
    3. 3.2 Use PL/SQL variables
    4. Put it all together
  5. Lesson 4: Logic Flow
    1. Learning Objectives
    2. 4.1 Understand IF/THEN/ELSE logic
    3. 4.2 Explore the CASE statement
    4. 4.3 Utilize looping syntax
    5. Put it all together
  6. Lesson 5: PL/SQL Cursors
    1. Learning Objectives
    2. 5.1 Introduce PL/SQL cursors and the implicit cursor
    3. 5.2 Explore explicit cursors
    4. Put it all together
  7. Lesson 6: PL/SQL Exception Handling
    1. Learning Objectives
    2. 6.1 Introduce PL/SQL exceptions
    3. 6.2 Explore PL/SQL exception basic syntax
    4. 6.3 Discover implicit vs explicit exceptions
    5. 6.4 Work with SQLCODE and SQLERRM features
    6. 6.5 Understand user-defined exceptions
    7. 6.6 Use application-defined exceptions
    8. Put it all together
  8. Lesson 7: PL/SQL Procedures and Functions
    1. Learning Objectives
    2. 7.1 Introduce PL/SQL procedures and functions
    3. 7.2 Explore PL/SQL procedures
    4. 7.3 Understand PL/SQL functions
    5. 7.4 Work with parameter passing
    6. Put it all together
  9. Lesson 8: PL/SQL Packages
    1. Learning Objectives
    2. 8.1 Introduce PL/SQL packages
    3. 8.2 Explore the package syntax
    4. 8.3 Review executing code in packages
    5. Put it all together
  10. Lesson 9: PL/SQL Triggers
    1. Learning Objectives
    2. 9.1 Introduce PL/SQL triggers
    3. 9.2 Explore the trigger syntax
    4. 9.3 Review the order of trigger processing and other restrictions
    5. 9.4 Work with useful examples
    6. Put it all together
  11. Lesson 10: PL/SQL New Features
    1. Learning Objectives
    2. 10.1 Introduce PL/SQL new features
    3. 10.2 Explore the new features with tips and techniques
    4. Put it all together
  12. Lesson 11: PL/SQL Collections
    1. Learning Objectives
    2. 11.1 Introduce PL/SQL collections
    3. 11.2 Explore the collection syntax
    4. 11.3 Review code examples
    5. 11.4 Explore bulk binding techniques
    6. Put it all together
  13. Lesson 12: PL/SQL Debugger, PL/SQL Profiler, PL/SQL Tuning Tips
    1. Learning Objectives
    2. 12.1 Introduce PL/SQL debugging, PL/SQL profiling, PL/SQL coding tips
    3. 12.2 Explore the TOAD debugger
    4. 12.3 Explore the SQL developer debugger
    5. 12.4 Review the PL/SQL profiler
    6. 12.5 Use the PL/SQL profiler with SQL*Plus
    7. 12.6 Use the TOAD PL/SQL profiler
    8. 12.7 Review PL/SQL coding tips
    9. Put it all together
  14. Oracle PL/SQL Programming Fundamentals LiveLessons: Summary
    1. Summary

Product information

  • Title: Oracle PL/SQL Programming Fundamentals LiveLessons
  • Author(s):
  • Release date: June 2015
  • Publisher(s): Pearson
  • ISBN: 0134213033