• Post category:StudyBullet-13
  • Reading time:5 mins read


Create functions, Stored Procedures and build PL/SQL Program components

What you will learn

Create PL/SQL Blocks

Execute PL/SQL Blocks

Create PL/SQL Variables

Create PL/SQL Functions

Create PL/SQL Stored Procedures

Implement conditional statements

Description

PL/SQL is a combination of SQL along with the procedural features of programming languages. It was developed by Oracle Corporation in the early 90’s to enhance the capabilities of SQL. PL/SQL is one of three key programming languages embedded in the Oracle Database, along with SQL itself and Java. This tutorial will give you great understanding on PL/SQL to proceed with Oracle database and other advanced RDBMS concepts.

This course is designed for Software Professionals, who are willing to learn PL/SQL Programming Language in simple and easy steps. This tutorial will give you great understanding on PL/SQL Programming concepts, and after completing this course, you will be at an intermediate level of expertise from where you can take yourself to a higher level of expertise.


Get Instant Notification of New Courses on our Telegram channel.


Before proceeding with this course, you should have a basic understanding of software basic concepts like what is database, source code, text editor and execution of programs, etc. If you already have an understanding on SQL and other computer programming language, then it will be an added advantage to proceed.

  • PL/SQL is tightly integrated with SQL.
  • It offers extensive error checking.
  • It offers a variety of programming structures.
  • It supports structured programming through functions and procedures.
  • It supports object-oriented programming.
  • It supports the development of web applications and server pages.
English
language

Content

Installing Oracle Database

Introduction
Oracle Installation Requirements
Download Oracle
Install Oracle
What is SQLplus
Connect SQLplus to Oracle
How to start and stop Oracle database
What is SQL Developer
Install SQL Developer
Connect SQL Developer to Oracle
Download Sample Schemas
Unlock sample schema account
Unlock sample schema tables
Connect schema account to Oracle

PL/SQL Essentials

what is PL/SQL
PL/SQL Block Structure
Execute a PL/SQL Annonymous Block using SQL Developer
PL/SQL Variables
PL/SQL Variable Declaration
PL/SQL Variable Assignment
PL/SQL Variable Anchors
Executing PL/SQL Variable Assignment using SQL Developer
Initializing Variables in PL/SQL using SQL Developer
PL/SQL Literals
Variable Scopes in PL/SQL using SQL Developer
Introduction to PL/SQL Functions
Creating Functions
Creating PL/SQL Functions using SQL Developer
What are PL/SQL Stored Procedures
How to create stored procedure using SQL Developer
PL/SQL IF Statements
PL/SQL IF Statements example using SQL Developer