Discover Classes. Earn 10% Rewards.

Oracle Database 12c: PL/SQL Fundamentals Course is unfortunately unavailable

Thankfully we have 12 other SQL Classes for you to choose from. Check our top choices below or see all classes for more options.

SQL Bootcamp

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Master the art of turning raw data into actionable insights with SQL queries. This hands-on course will teach you how to filter, group, and join data, as well as use advanced techniques like subqueries and aggregate functions. Gain the skills to excel in any data-driven industry and make more informed decisions.

(373) All levels 18 and older
$975

3 sessions

Gift it!

SQL Private Training

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Unlock the power of databases with personalized SQL training. Master the art of querying, filtering, and aggregating data using PostgreSQL, gaining essential skills applicable across various database platforms. Transform

(373) All levels 13 and older

Data Analytics Technologies Bootcamp

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

In this course, students will master Excel, SQL, and Tableau, some of the top data analytics tools. Here, students will gain the skills to organize, analyze, summarize, and visualize data, presenting actionable insights for effective decision-making. Comprehensive classroom training in Midtown Manhattan.

(373) All levels 18 and older
$1,949

8 sessions

Gift it!

SQL Level 1

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Unlock the power of SQL and relational databases with this comprehensive course. Learn how to write SQL queries, filter results, and combine data from multiple tables, all while gaining a strong foundation in database architecture. Master the fundamentals of SQL at Noble Desktop.

(373) Beginner 18 and older
$350

2 sessions

Gift it!

SQL Bootcamp (PostgreSQL)

NYIM Training @ 185 Madison Ave, New York, NY

Discover how to transform raw data into actionable insights using SQL queries in this hands-on PostgreSQL course. Learn to filter, aggregate, and join data to extract the specific information you need. Gain a valuable skill that will give you a larger role in decision-making in any industry.

(742) All levels 18 and older
$975

2 sessions

Gift it!
See all SQL classes NYC

Oracle Database 12c: PL/SQL Fundamentals Course

  • Beginner
  • 18 and older
  • $2,995
  • Earn 29,950 reward points
  • 33 Wood Avenue S, Iselin, NJ
  • over 5 sessions

Start Dates (0)

  • $2,995
  • over 5 sessions
  • All classes are live, hands-on training via remote instructor.
Showing 10 of 0

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.

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 coursd 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.

Contents

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 SQL*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

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)

Similar Classes

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.

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 NYC educator.

ONLC Training Centers

ONLC Training Centers

All classes at this location

Google Map

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 Professional 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...