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


Create PL/SQL Blocks with various components

What you will learn

Create PL/SQL Blocks

Execute PL/SQL Blocks

Create and initialize variables

Create functions

Create PL/SQL Stored procedures

Execute or call PL/SQL Procedures

Use conditional statements to execute block of code

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 numerous data types.
  • 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 Server

Introduction
Oracle installation requirements
Download Oracle Database Server
Install Oracle
What is SQLPlus
Connect SQLPlus to Oracle
How to start and stop Oracle Database Server
What is SQL Developer
Install SQL Developer
Connect SQL Developer to Oracle
Download Sample Schemas
Unlock sample HR schemas
Unlock sample HR Schemas Tables
Connect Schema account to Oracle

PL/SQL Fundamentals

what is PL/SQL
PL/SQL Block Structure
Execute a PL/SQL Annonymous Block using SQLPlus
Edit a PL/SQL Code Block using SQLPlus
PL/SQL Variables
PL/SQL Variable Declaration
PL/SQL Variable Assignment
PL/SQL Variable Anchors
Initializing Variables in PL/SQL using SQLPlus
PL/SQL Literals
Variable Scopes in PL/SQL using SQLPlus
Introduction to PL/SQL Functions
Creating Functions
Creating PL/SQL Functions using SQLPlus
What are PL/SQL Stored Procedures
How to create stored procedure using SQLPlus
How to execute or call a stored procedure using SQLPlus
PL/SQL IF Statements
PL/SQL IF Statements example using SQLplus