Introduction to PL/SQL (Composite Data Type)

Composite data type: Composite data type stores values that have internal components. You can pass entire composite variables to subprograms as parameters, and you can access internal components of composite variables individually. Internal components can be either scalar or composite. You can use scalar components wherever you can use scalar variables or you can use composite components wherever you can use composite variables of the same type. There are two types of composite data type…

  • 1. PL/SQL records.
  • 2. PL/SQL collection.
    • INDEX by Table
    • Nested Table
    • VARRAY

1. PL/SQL records: Use PL/SQL records when you want to store values of different data types but only one occurrence at a time. PL/SQL record must contain one or more components (called fields) of any scalar, RECORD or Index by table data type.

Creating PL/SQL records:

Syntax:
TYPE type_name is RECORD
    (field_declaration [, field_declaration ]...);
identifier type name;

field_declaration:
field_name {field_type | variable%type
           | table.column%type | table%rowtype}
           [[NOT NULL] {:= | DEFAULT} expr]

Example:

...
TYPE emp_record_type IS RECORD
     (lname VARCHAR2(20),
      job_id VARCHAR2(30)  DEFAULT 'Developer',
      salary NUMBER emp.salary%TYPE);
emp_type emp_record_type;
...

Using %ROWTYPE in composite data type: The %ROWTYPE attribute is useful when the number and data types of the underlying database columns is unknown and  retrieving a row with the SELECT * from statement.

Example:

DECLARE
  emp_rec employees%ROWTYPE;
BEGIN
  SELECT * INTO emp_rec FROM employees
    WHERE employee_id = 124;
  emp_rec.hire_date := SYSDATE;
 UPDATE EMP SET ROW = emp_rec;
END;

 

Introduction to PL/SQL (Variable & Data type)

Variable: Variable are mainly used for temporary storage of data and manipulation of stored data. Variable can stored any PL/SQL objects, such as variables, types, cursors and subprograms. Variable can be used repeatedly in an application by referring to them in the statements.

Identifier & Variable: Identifier are name of the variables. Variable are storage location of data. Data stored in memory. Variable point to this memory location where data can be read and modified. Identifier are used to name PL/SQL objects and Variable are used to store PL/SQL objects.

You must declare all PL/SQL identifier in the declaration section before referencing them in the PL/SQL block.

Syntax:

identifier [CONSTANT] datatype [not null] [:= | DEFAULT expr];

Example:

DECLARE
  hire_date DATE;
  dept_no NUMBER(2) NOT NULL := 10;
  location VARCHAR2(10) := 'Dhaka';
  c_comm CONSTANT NUMBER := 1400;
  country VARCHAR2(10) DEFAULT 'Bangladesh';
BEGIN
...
END;

Types of Variable:
PL/SQL Variable –

  • Scalar: Scalar data type can hold single value.
  • Comosite: Composite data type contain internal elements that are either scalar or scalar. Record and Table are example of examples of composite data types.
  • Reference: Reference data types hold values, called pointers, that point to a storage location.
  • Large Objects (LOB): LOB data type hold values, called locators, that specify the location of large objects that are stored out of line.

Non-PL/SQL Variables – Bind variable.

Initialize the variable to an expression with the assignment operator (:=) or with the DEFAULT reserved word.

Base Scalar Data Types:

Data Type Description
CHAR (max_length) Base type for fixed-length character data up to 32767 bytes.
VARCHAR2 (max_length) Base type for variable-length character data up to 32767 bytes.
Number (p,s) Number having precision p and scale s. The precision p can be range from 1 to 38. The scale s can range -84 to 127.
BINARY_INTEGER Base type for integers between -2,147,483,647 and 2,147,483,647.
PLS_INTEGER Base type singed integers between -2,147,483,647 and 2,147,483,647. The arithmetic operation on PLS_INTEGER and BINARY_INTEGER values are faster than on number values.
BOOLEAN Base type that stores one of the three possible values used for logical calculations: TRUE, FALSE and NULL.
BINARY_FLOAT Represents floating point number in IEEE 754 format. Requeires 5 bytes to store the value.
BINARY_DOUBLE Represents floating point number in IEEE 754 format. Requeires 9 bytes to store the value.
DATE Base type for date and time.
TIMESTAMP The TIMESTAMP data type, which extends the DATE type, stores the year, month, day, hour, minute, second and fraction of second.
TIMESTAMP WITH TIME ZONE The TIMESTAMP WITH TIME ZONE data type, which extends the TIMESTAMP data type, includes a time zone displacement.
TIMESTAMP WITH LOCAL TIME ZONE The TIMESTAMP WITH LOCAL TIME ZONE data type, which extends the TIMESTAMP data type, includes a time zone displacement. The time zone displacement is the difference between local and UTC time.

Declare Variable with %TYPE Attribute:  %type attribute is used to declare a variable according to a database column definition or another declared variable. Such as…

....
  lname employees.last_name%TYPE,
  dept_no NUMBER;
  manager dept_no%TYPE;
....

Bind Variable: Bind variable are crated in the environment and not in the declarative section of a PL/SQL block. Variable declared in a PL/SQL block are available only when you execute the block. After the block is executed, the memory used by the variable is freed. Sometimes they are called host variable and create with VARIABLE command.
Example:

VARIABLE name VARCHAR2
SET AUTOPRINT ON
BEGIN
  SELECT last_name INTO :name 
  FROM employees WHERE employee_id = 100;
END;
/

 continue….

Introduction to PL/SQL (Basic)

PL/SQL (Procedural Language/Structured Query Language): PL/SQL is Oracle Corporation’s procedural language extension for SQL and Oracle corporation’s standard data access language for relational database. PL/SQL is available in Oracle Database since version 7. PL/SQL includes procedural language elements such as conditions and loops. You can declare constants and variables, procedures and functions, types and variables of those types, and triggers. You can handle exceptions (runtime errors). Arrays are supported involving the use of PL/SQL collections.

PL-SQL

PL/SQL Block Structure: A PL/SQL block is defined by the keywords DECLARE, BEGIN, EXCEPTION, and END. These keywords divide the block into a declarative part, an executable part, and an exception-handling part. The declaration section is optional and may be used to define and initialize constants and variables. If a variable is not initialized then it defaults to NULL value. The optional exception-handling part is used to handle run time errors. Only the executable part is required. PP/SQL block structure like this…

DECLARE (optional)
  -- Variable, cursors, user defined exceptions.
BEGIN (mandatory)
  -- SQL Statements
  -- PL/SQL Statements
Exception (optional)
  -- Actions to perform when error occur
END (mandatory)

Block type: There are three type of block make up a PL/SQL progarm. they are…

  • Anonymous block: Anonymous block are unnamed blocks. These block are not stored in the database.
  • Procedures: Procedure are a named PL/SQL block that are stored in the database and perform an action.
  • Functions: Function similar to procedure, except that a function must return a value.

Test your output: Enable output in SQL*Plus with the this command –  SET SERVEROUTPUT ON and use a predefined Oracle package and its procedure – DBMS_OUTPUT.PUT_LINE 

Example:

SET SERVEROUTPUT ON
...
BEGIN
  DBMS_OUTPUT.PUT_LINE ('Hello World!');
END;
/

 Continue….

How to Install APEX with Oracle 11g

আসসালামু আলাইকুম। বন্ধুরা আজকে আমি দেখাবো কিভাবে Oracle Database 11g এর সাথে Oracle APEX ইন্সটল করবেন। মনে রাখবেন APEX ইন্সটল করতে হলে আপনার ডাটাবেজ ভার্সন 11g বা তার উপরে হতে হবে। প্রথমেই এই লিঙ্ক থেকে APEX এর সর্বশেষ ভার্সনটি ডাউনলোড করে নিন। আমি নতুন টেবিলস্পেসে APEX ইন্সটল করে দেখাব, আপনি চাইলে ডাটাবেজের ডিফল্ট টেবিলস্পেসও (SYSAUX) ইন্সটল দিতে পারেন। তাহলে চলুন শুরু করা যাক।

  • ডাউনলোড করা জিপ ফাইলটি আনজিপ করে আপনার লোকাল ড্রাইভে রাখুন।
  • Connect sys as sysdba from your SQL*Plus.
  • Now create a tablespace for APEX, for example-
CREATE TABLESPACE APEX
DATAFILE 'C:oradataorclAPEX_0425.dbf' SIZE 300M
EXTENT MANAGEMENT LOCAL
SEGMENT SPACE MANAGEMENT AUTO;
  • Create a temporary tablespace,  for example-
CREATE TEMPORARY TABLESPACE TEMP_02
TEMPFILE 'C:oradataorclTEMP_0425.dbf' SIZE 100M;
  • এবার কমান্ড প্রম্পট থেকে APEX Directory তে প্রবেশ করুন। এবং এখান থেকে SQL*Plus এ কানেক্ট করুন।

কমান্ড প্রম্পট (CMD) থেকে APEX Directory তে প্রবেশ করার জন্য  CD C:apex লিখুন ,
এবং এসকিউএলে প্রবেশ এর জন্য APEX ডিরেক্টরি থেকে sqlplus লিখে এন্টার দিন।

  • Connect sys as sysdba from apex directory.
  • Run following script and wait 20+ minutes.
     @apexins.sql APEX APEX TEMP_02 /i/
  • Again Connect sys as sysdba from APEX and run the following script
    @apex_epg_config.sql C:
    @apxldimg.sql C:
  • Unlock following user
ALTER USER ANONYMOUS ACCOUNT UNLOCK;
ALTER USER ANONYMOUS IDENTIFIED BY 123;
ALTER USER APEX_PUBLIC_USER ACCOUNT UNLOCK;
ALTER USER APEX_PUBLIC_USER IDENTIFIED BY 123
  • Set APEX connection port
    EXECUTE DBMS_XDB.sethttpport(8080);
  • Confirm your port-
    SELECT DBMS_XDB.gethttpport FROM DUAL;
  • Create administration service –
    @apxchpwd
    Password must contain one uppercase, one lowercase, special character and
    Length minimum 8 character.

 app1

এখানে আপনাকে নতুন পাসওয়ার্ড দিতে বলবে। আপনার পছন্দমত পাসওয়ার্ড দিন। পাসওয়ার্ড অবশ্যই আপার কেস, লোয়ার কেস এবং নিউমেরিক মিলিয়ে দিতে হবে। সফলভাবে পাসওয়ার্ড দেয়া হলে http://127.0.0.1:8080/apex URL টি  আপনার ব্রাওজার দিয়ে ওপেন করুন। ওয়ার্কস্পেস এর নাম দিন internal ও ইউজারনেম দিন admin আথবা আপনার দেওয়া ইউজারনেম এবং আপনার দেওয়া পাসওয়ার্ড দিয়ে কানেক্ট করুন। Admin workspace এ ঢুকে প্রথমেই একটি ওয়ার্কস্পেস ও একটি ইউজার তৈরি করে নিন। এবার আপনার তৈরি করা ওয়ার্কস্পেস এ কানেক্ট করে শুরু করে দিন অ্যাপ্লিকেশান ডেভেলপমেন্ট ………… Happy Apexing!

 

Oracle Application Express (APEX) Tutorial

This series of videos shows how to use Oracle APEX to build a database and quickly create a working prototype application. This series is based on APEX version 4.2.4.  This video tutorial made by New Mexico State University, USA.

Course Coverage:
01. Getting started with Oracle XE and APEX
02. Overview of Oracle APEX
03. Use SQL workshop to create tables from SQL scrips
04. Create trigger and isert data into table
05. Create a table using object browser and define a constrait
06. Use SQL workshop utilites to import data from a CSV file
07. Create an application using application builder
08. Create a simple form and Report with apllication builder
09. User interface defaults, See why they are impottant
10. Forms and Reports on a table
11. Create a list of values (LOV) and use it in a form
12. Show a field in a form that APEX set to “hidden”
13. Create a master details form
14. Add a region and add a button to a page
15. Using LOVs in a form or report
16. Create a view in APEX
17. Create a classic report in APEX
18. Create a interactive report based on a view
19. Create a master form with two detail sections
20. Add a hyperlink to master-details report
21. Fix a problem passing a primary key value to the next page
22. Finising the prototype application
23. Master-details: A more user friendly master detail form for data entry
24. See a schematic diagram of the application’s database

Source File for Practice