Discover Classes. Earn 10% Rewards.

Oracle Database: PL/SQL Fundamentals

Master Oracle database programming with PL/SQL fundamentals. Learn syntax, structure, and advanced application design for database development. Elevate your skills in procedures, functions, packages, and database triggers for efficient application development.

  • Beginner
  • Small class sizes
  • 18 and older
  • $2,995
  • Earn 10% Rewards
  • Price Lock
  • Online Classroom
  • 33 hours & 45 minutes over 5 sessions

Express Checkout – $2,995


Proceed to Checkout

No Booking Fees. Lowest Price Guaranteed. Earn 10% Rewards.

Give as a Gift

Start Dates (5)

  • $2,995/person
  • 33 hours & 45 minutes over 5 sessions
10 left
Book
Show all 5 sessions
  • Mon, Feb 17 at 10:00am - 4:45pm
  • Tue, Feb 18 at 10:00am - 4:45pm
  • Wed, Feb 19 at 10:00am - 4:45pm
  • Thu, Feb 20 at 10:00am - 4:45pm
  • Fri, Feb 21 at 10:00am - 4:45pm
10 left
Book
Show all 5 sessions
  • Mon, Mar 17 at 10:00am - 4:45pm
  • Tue, Mar 18 at 10:00am - 4:45pm
  • Wed, Mar 19 at 10:00am - 4:45pm
  • Thu, Mar 20 at 10:00am - 4:45pm
  • Fri, Mar 21 at 10:00am - 4:45pm
10 left
Book
Show all 5 sessions
  • Mon, Apr 14 at 10:00am - 4:45pm
  • Tue, Apr 15 at 10:00am - 4:45pm
  • Wed, Apr 16 at 10:00am - 4:45pm
  • Thu, Apr 17 at 10:00am - 4:45pm
  • Fri, Apr 18 at 10:00am - 4:45pm
10 left
Book
Show all 5 sessions
  • Mon, May 12 at 10:00am - 4:45pm
  • Tue, May 13 at 10:00am - 4:45pm
  • Wed, May 14 at 10:00am - 4:45pm
  • Thu, May 15 at 10:00am - 4:45pm
  • Fri, May 16 at 10:00am - 4:45pm
10 left
Book
Show all 5 sessions
  • Mon, Jun 16 at 10:00am - 4:45pm
  • Tue, Jun 17 at 10:00am - 4:45pm
  • Wed, Jun 18 at 10:00am - 4:45pm
  • Thu, Jun 19 at 10:00am - 4:45pm
  • Fri, Jun 20 at 10:00am - 4:45pm
Showing 15 of 5

Class Description

Description

What you'll learn in this sql class:

This course introduces one to Oracle database programming using the PL/SQL programming language. One will learn the syntax, structure and features of the language. This textbook will also lay the foundation for the entire Sideris Oracle PL/SQL programming series, allowing one to progress from introductory topics to advanced application design and programming and finally onto writing complex high-performance applications.

PL/SQL may be considered as one of the basic skill sets required for any Oracle professional, nearly as important as the SQL language itself.

This course will also continue on to show those who are now ready to employ the language in the development of database applications. In particular, the focus of this course will be on the use of database-resident stored program units such as procedures, functions, packages and database triggers. New features introduced with the Oracle 12c release of the database are also explained and demonstrated.

This course content is applicable to versions 12c, 18c, and 19c.

Target Audience

The target audience for this textbook is all Oracle professionals. Among the specific groups for whom this textbook will be helpful are:

• Application designers and database developers

• Database administrators

• Web server administrators

Prerequisites

Oracle Database 12c: SQL Fundamentals

Certification

This course considers subjects applicable to certification as both an Oracle PL/SQL Developer Certified Associate (OCA) and an Oracle Advanced PL/SQL Developer Certified Professional (OCP). The topics considered are included within "Exam 1Z0-144: Program With PL/SQL".

Objectives

This course begins with an explanation of the intent and usage of the PL/SQL programming language for database applications. Important reasons why one should incorporate PL/SQL modules within the application architecture right from the initial design and planning phase are presented. Next one learns how to begin building executable PL/SQL program units. One learns about each of the major segments of a working program and how these interact with each other during program execution, including the important error or exception handling capabilities of the language. The final section goes beyond the basics and begins to explore advanced topics that will be useful later in the Sideris Oracle PL/SQL developer textbook series. One learns techniques and features that allow modular and reusable programs to be developed, increasing productivity and maintainability of database applications.

In addition, this course explains how database-resident program units can be used as part of the overall database application architecture and the benefits realized by doing so. It then builds upon one's knowledge of database-resident program units and applies these to the development of PL/SQL packages. In a production environment most PL/SQL program units should be packaged, and these advanced database programming capabilities along with the benefits of using these are discussed. It concludes with extensive demonstrations on how a particular type of database-resident program unit known as a database trigger can be used as part of an advanced database application design.

Course Outline

Selection & Setup Of The Database Interface

•      Considering Available Tools

•      Selecting The Appropriate Tool

•      Oracle Net Database Connections

•      Oracle Paas Database Connections

•      Setup SQL Developer

•      Setup QLql*Plus

•      Setup Jdeveloper

About Bind & Substitution Variables

•      Using SQL Developer

•      Using SQL*Plus

Choosing A Database Programming Language

•      What Is Database Programming?

•      PL/SQL Performance Advantages

•      Integration With Other Languages

PL/SQL Language Fundamentals

•      PL/SQL Program Structure

•      Language Syntax Rules

•      Embedding SQL

•      Writing Readable Code

•      Generating Database Output

•      SQL*Plus Input Of A Program Block

Declare Section

•      About The Declare Section

•      Declare Primitive Types

•      Declaration Options

•      Not Null

•      Constant

•      Data Dictionary Integration

•      %Type

•      Declare Simple User-Defined Types

•      Type ... Table

•      Type ... Record

•      Extended User-Defined Types

Begin Section

•      About The Begin Section

•      Manipulating Program Data

•      Logic Control & Branching

•      Goto

•      Loop

•      If-Then-Else

•      Case

Exception Section

•      About The Exception Section

•      Isolating The Specific Exception

•      Pragma Exception_Init

•      Sqlcode & Sqlerrm Example

•      SQL%Rowcount & Select...Into

Beyond The Basics: Explicit Cursors

•      About Explicit Cursors

•      Extended Cursor Techniques

•      For Update Of Clause

•      Where Current Of Clause

•      Using For…Loop Cursors

Introducing Database-Resident Program Units

•      About Database-Resident Programs

•      Physical Storage & Execution

•      Types Of Stored Program Units

•      Stored Program Unit Advantages

•      Modular Design Principles

Creating Stored Procedures & Functions

•      Stored Procedures & Functions

•      Create Procedure / Create Function

•      Creating Procedures & Functions

•      Raise_Salary() Procedure

•      Salary_Valid() Function

•      The Parameter Specification

•      Default Clause

•      System & Object Privileges

•      Using The Development Tools

Executing Stored Procedures & Functions

•      Calling Procedures & Functions

•      Unit Testing With Execute

•      Anonymous Block Unit Testing

•      Specifying A Parameter Notation

•      Sql Worksheet Unit Testing

•      Calling Functions From Sql

Maintaining Stored Program Units

•      Recompiling Programs

•      Mass Recompilation Using Utl_Recomp()

•      Dropping Procedures & Functions

•      Drop Procedure / Function

•      Data Dictionary Metadata

•      Using User_Objects

•      Using User_Source

•      Using User_Errors

•      Using User_Object_Size

•      Using User_Dependencies

Managing Dependencies

•      Dependency Internals

•      Tracking Dependencies

•      The Dependency Tracking Utility

•      Sql Developer Dependency Info

•      Dependency Strategy Checklists

Creating & Maintaining Packages

•      About Packages

•      Creating Packages

•      Maintaining Packages

•      Performance Considerations

Advanced Package Capabilities

•      Definer & Invoker Rights

•      White Lists & Accessible By

•      Persistent Global Objects

•      Defining Initialization Logic

•      Object Orientation Support

Advanced Cursor Techniques

•      Using Cursor Variables

•      Using Sys_Refcursor

•      Using Cursor Expressions

Using System-Supplied Packages

•      Dbms_Output()

•      Utl_File()

•      Fopen() Example

Database Trigger Concepts

•      About Database Triggers

•      Dml Event Trigger Sub-Types

•      Database Trigger Scenario

•      Trigger Execution Mechanisms

•      Triggers Within Sql Worksheet

Creating Database Triggers

•      Statement-Level Triggers

•      Using Raise_Application_Error()

•      Row-Level Triggers

•      Examples Of Triggers

•      Employee_Salary_Check Example

•      Employee_Journal Example

•      Budget_Event Example

•      Instead Of Triggers

•      Triggers Within An Application

Maintaining Database Triggers

•      Call Syntax

•      Trigger Maintenance Tasks

•      Show Errors Trigger

•      Drop Trigger

•      Alter Trigger

•      Multiple Triggers For A Table

•      Handling Mutating Table Issues

Implementing System Event Triggers

•      What Are System Event Triggers?

•      Defining The Scope

•      Available System Events

•      System Event Attributes


Remote Learning

This course is available for "remote" learning and will be available to anyone with access to an internet device with a microphone (this includes most models of computers, tablets). Classes will take place with a "Live" instructor at the date/times listed below.

Upon registration, the instructor will send along additional information about how to log-on and participate in the class.

Refund Policy

Cancellation / Reschedule by Student

Because we must schedule rooms, ship course materials, assign instructors and provision computer resources well in advance, it is important students alert us ASAP with any cancel/reschedule requests.

Please note the following policies:

  • If requested 16 or more calendar days before the class
    • Cancellation requests made in this timeframe are eligible for refund less 5% cancellation fee.
    • Reschedule requests made in this timeframe will be accommodated if availability exists and will be processed at no additional charge.
  • If requested 15 calendar days or less before the class
    • Cancellation or Reschedule requests made by the student 15 calendar days or less before the class starts will be charged 100% the course fee and are not entitled to a refund.

Substitutions

  • If you are unable to attend your class, a substitute who meets the course prerequisites may attend in your place at no additional charge for the original class title, date and location. If you cannot find a substitute, you will be subject to the class cancellation policy.

Make-up Policy

Students are permitted one (1) Make-Up opportunity to attend an instructor-led class that was paid for but not previously attended for no additional charge.

  • Make-Up class registrations are subject to availability and are not entitled to refund.
  • Students may not reschedule a Make-up class registration.
  • Any no shows or cancellations forfeit their one Make-up opportunity.

Additionally, ONLC reserves the right to retire courses due to lack of demand. Retired classes are not available for Make-Up.

In the event that an instructor or the school needs to cancel at the last minute, students will receive a refund less a 5% non-refundable registration fee.

In any event where a customer wants to cancel their enrollment and is eligible for a full refund, a 5% processing fee will be deducted from the refund amount.

Reviews of Classes at ONLC Training Centers (7)

Benefits of Booking Through CourseHorse

  • Booking is safe. When you book with us your details are protected by a secure connection.
  • Lowest price guaranteed. Classes on CourseHorse are never marked up.
  • This class will earn you 29950 points. Earn 10% back in reward points!

Questions & Answers (0)

Get quick answers from CourseHorse and past students.

Similar Classes

ONLC Training Centers

ONLC Training Centers was founded in 1983 when Jim Palic and Andy Williamson left their positions as mainframe programmers with the Dupont Company to start one of the industry's first computer training companies.

Over thirty years and still growing, ONLC Training Centers is one of the the largest privately...

Read more about ONLC Training Centers

CourseHorse Approved

This school has been carefully vetted by CourseHorse and is a verified Online educator.

ONLC Training Centers

Give This Course as a Gift Card

  • Thousands of classes
  • No expiration
  • Unique and memorable gifts for any occasion
  • Personalized
  • Explore a passion, gain a new skill, discover a new hobby, engage in a memorable experience
  • Instant delivery
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™

Buy a Gift Card

Book this Class as a Group Event

Booking this class for a group? Find great private group events

Or see all Data Analytics Group Events

Explore group events and team building activities ranging from cooking, art, escape rooms, trivia, and more.

CourseHorse Gift Cards

  • Creative & unique gift for any occasion
  • Thousands of classes & experiences
  • No expiration date
  • Instant e-delivery (or choose a date)
  • Add a personalized message
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™
Buy a Gift Card
gift card with the CourseHorse logo gift card with the CourseHorse logo
Loading...