Excellence in IT Certified Education
ExitCertified - Excellence in IT Certified Education
 
IT education classes
Excellence in IT Certified Education
start courses and schedules education savings it certification education solutions
Training Search
Excellence in IT Certified Education
Training Course Details
Start Training Courses and Schedule Oracle Database 11g: Develop PL/SQL Program Units

Oracle Database 11g: Develop PL/SQL Program Units

 

This course is designed for developers with basic PL/SQL and SQL language skills. Students learn to develop, execute, and manage PL\SQL stored program units such as procedures, functions, packages, and database triggers. Students also learn to manage, PL/SQL subprograms and triggers. Students are introduced to the utilization of some of the Oracle-supplied packages. Additionally students learn to use Dynamic SQL, understand design considerations when coding using PL/SQL, understand and influence the PL/SQL compiler and manage dependencies. In this course, students use Oracle SQL Developer as the main tool and SQL*Plus is introduced as an optional tool. Learn to:


Create, and execute stored procedures and functions.
Design and use PL/SQL packages
Create overloaded package subprograms for more flexibility.
Utilize Oracle-Supplied Packages in Application Development
Create triggers to solve business challenges.
Build and execute SQL statements dynamically.


Oracle Training Course Certified  
Skills Gained
 
 

Use the compiler warnings infrastructure
Create triggers to solve business challenges
Manage dependencies between PL/SQL subprograms
Use conditional compilation to customize the functionality in a PL/SQL application without removing any source code
Create, and use stored procedures and functions
Design and use PL/SQL packages to group and contain related constructs
Create overloaded package subprograms for more flexibility
Use the Oracle supplied PL/SQL packages to generate screen output, file output, and mail output
Write dynamic SQL for more coding flexibility
Design PL/SQL code for pre-defined data types, local subprograms, additional programs and standardized constants and exceptions


Who Can Benefit
 
 

Application Developers
PL/SQL Developer
Database Administrators
Forms Developer
System Analysts
Support Engineer


Prerequisites
  Suggested Prerequisites:
 

Previous programming experience
Basic Knowledge of PL/SQL


 
     
  Email Training Course
     
Code: 11g-PLSQL-PU
Length: 3 days
Type: Instructor-Led
   
Certified By: Oracle
Tuition: $180
   
Oracle Training Course This course is taught by Certified Oracle instructors. There is a difference. Learn More
 
This course is in the following categories. Click the categories to find similar courses and topics of interest.
 
 
 
Training Courses Help
 
Sort Schedule By: 
No Course Dates There are currently no scheduled dates for this course. If you are interested in this course, request a course date with the links below. We can also contact you when the course is scheduled in your area.
   
Request course date Request Course On-Site
 
 
training course details
Introduction
  • Course Objectives and Agenda
  • Describing the Human Resources (HR) Schema
  • Identifying the Appendices Used in this Course
  • Listing the PL/SQL Development Environments Available in this Course
  • Using SQL Developer
  • Reviewing the Online Oracle 11g SQL and PL/SQL Documentation and the Additional Available Resources
Creating Stored Procedures
  • Creating a Modularize and Layered Subprogram Design
  • Modularizing Development With PL/SQL Blocks
  • Understanding the PL/SQL Execution Environment
  • The Benefits of Using PL/SQL Subprograms
  • The Differences Between Anonymous Blocks and Subprograms
  • Creating, Calling, and Removing Stored Procedures Using the CREATE Command and SQL Developer
  • Using Procedures Parameters and Parameters Modes
  • Viewing Procedures Information Using the Data Dictionary Views and SQL Developer
Creating Stored Functions
  • Creating, Calling, and Removing a Stored Function Using the CREATE Command and SQL Developer
  • Identifying the Advantages of Using Stored Functions in SQL Statements
  • Identify the steps to create a stored function
  • Using User-Defined Functions in SQL Statements
  • Restrictions When Calling Functions from SQL statements
  • Controlling Side Effects When Calling Functions from SQL Expressions
  • Viewing Functions Information
Creating Packages
  • Listing the Advantages of Packages
  • Describing Packages
  • The Components of a Package
  • Developing a Package
  • The Visibility of a Package's Components
  • Creating the Package Specification and Body Using the SQL CREATE Statement and SQL Developer
  • Invoking the Package Constructs
  • Viewing the PL/SQL Source Code Using the Data Dictionary
Working With Packages
  • Overloading Subprograms in PL/SQL
  • Using the STANDARD Package
  • Using Forward Declarations to Solve Illegal Procedure Reference
  • Using Package Functions in SQL and Restrictions
  • Persistent State of Packages
  • Persistent State of a Package Cursor
  • Controlling Side Effects of PL/SQL Subprograms
  • Using PL/SQL Tables of Records in Packages
Using Oracle-Supplied Packages in Application Development
  • Using Oracle-Supplied Packages
  • Examples of Some of the Oracle-Supplied Packages
  • How Does the DBMS_OUTPUT Package Work?
  • Using the UTL_FILE Package to Interact With Operating System Files
  • Using the UTL_MAIL Package
  • Using the UTL_MAIL Subprograms
 
Using Dynamic SQL
  • The Execution Flow of SQL
  • What is Dynamic SQL?
  • Declaring Cursor Variables
  • Dynamically Executing a PL/SQL Block
  • Using Native Dynamic SQL to Compile PL/SQL Code
  • Using DBMS_SQL Package
  • Using DBMS_SQL with a Parameterized DML Statement
  • Dynamic SQL Functional Completeness
Design Considerations for PL/SQL Code
  • Standardizing Constants and Exceptions
  • Using Local Subprograms
  • Using Autonomous Transactions
  • Using the NOCOPY Compiler Hint
  • Using the PARALLEL_ENABLE Hint
  • Using the Cross-Session PL/SQL Function Result Cache
  • Using the DETERMINISTIC Clause with Functions
  • Using Bulk Binding to Improve Performance
Creating Triggers
  • Working With Triggers
  • Identifying the Trigger Event Types and Body
  • Business Application Scenarios for Implementing Triggers
  • Creating DML Triggers Using the CREATE TRIGGER Statement and SQL Developer
  • Identifying the Trigger Event Types, Body, and Firing (Timing)
  • Statement Level Triggers Versus Row Level Triggers
  • Creating Instead of and Disabled Triggers
  • Managing, Testing, and Removing Triggers
Creating Compound, DDL, and Event Database Triggers
  • Working With Compound Triggers
  • Identifying the Timing-Point Sections of a Table Compound Trigger
  • Compound Trigger Structure for Tables and Views
  • Using a Compound Trigger to Resolve the Mutating Table Error
  • Comparing Database Triggers to Stored Procedures
  • Creating Triggers on DDL Statements
  • Creating Database-Event and System-Event Triggers
  • System Privileges Required to Manage Triggers
Using the PL/SQL Compiler
  • Using the PL/SQL Compiler
  • Using the Initialization Parameters for PL/SQL Compilation
  • Using the New PL/SQL Compile Time Warnings
  • Overview of PL/SQL Compile Time Warnings for Subprograms
  • The Benefits of Compiler Warnings
  • The PL/SQL Compile Time Warning Messages Categories
  • Setting the Warning Messages Levels: Using SQL Developer, PLSQL_WARNINGS Initialization Parameter, and the DBMS_WARNING Package Subprograms
  • Viewing the Compiler Warnings: Using SQL Developer, SQL*Plus, or the Data Dictionary Views
Managing PL/SQL Code
  • What Is Conditional Compilation and How Does it Work?
  • Using Selection Directives
  • Using Predefined and User-Defined Inquiry Directives
  • The PLSQL_CCFLAGS Parameter and the Inquiry Directive
  • Using Conditional Compilation Error Directives to Raise User-Defined Errors
  • Using the DBMS_DB_VERSION Package
  • Using DBMS_PREPROCESSOR Procedures to Print or Retrieve Source Text
  • Obfuscating and Wrapping PL/SQL Code
Managing Dependencies
  • Overview of Schema Object Dependencies
  • Querying Direct Object Dependencies Using the USER_DEPENDENCIES View
  • Querying an Object's Status
  • Invalidation of Dependent Objects
  • Displaying Direct and Indirect Dependencies
  • Fine-Grained Dependency Management in Oracle Database 11g
  • Understanding Remote Dependencies
  • Recompiling a PL/SQL Program Unit
 




ExitCertified Training - Sun Microsystems, Oracle, Symantec, IBM, MySQL, RedHat, Linux, NetApp
  Oracle Course Training  
  When you take a certified course with ExitCertified, you are learning from
the creators of the products you use. Our commitment to your IT
community, along with our authorization to deliver certified courses,
ensures you receive a premium training experience.

There is a difference. Learn from the source.
 
Oracle Course
     
Contact ExitCertified    
     
Spotlight Centers All United States Training Centers
Sacramento Training :: 916.669.3970
San Francisco Training :: 415.975.3948
San Jose Training :: 408.288.3948
Las Vegas Training :: 1.800.803.3948
Phoenix Training :: 1.800.803.3948
New York Training
Chicago Training
Los Angeles Training
Atlanta Training
Washington Training

Denver Training
Boston Training
Dallas Training
Houston Training
Philadelphia Training
View All US Training Centers
     
Worldwide - 613.232.3948 Got Questions?
We are happy to help. Just email us with this form and we'll get back to you shortly.
   
Sun Microsystems Course


it training education
it education and training

(c) 2008 ExitCertified Corp. All rights reserved.


ExitCertified is a global provider of authorized technology training. Some of our popular course topic searches include:
 
Sun Microsystems Training Oracle Training Symantec Training IBM Training Red Hat :: Linux Training
Java Training, J2EE Training, JSP Training, Java Courses, Servlets Training, EJB Training, Struts Training, Networking Courses, Solaris Training, Java Composite Application Platform (JCAPS) Training, Java Certification, SeeBeyond Training, XML Training, Solaris Certification, Corporate Training Solaris 10 Course PeopleSoft Training, 11g Training, 11g Certification, Oracle SQL, Oracle PL/SQL, DBA Training, DBA Certification, Oracle Certification, Hyperion Training, Fusion Middleware Training, 10g Training, 9i Training NetBackup Training, Veritas Training, Symantec Certification, Virus Protection Courses, IT Security Training DB2 Training, OS/400 Training, zSeries Training
s/390 Training, iSeries Training, AIX Training
SUSE Training, RedHat Course
         
MySQL Training Apple Training NetApp Training Project Management Training  
MySQL Database Course Apple Course, Leopard Training   PMI Training