Constructs a two varrays and one nested table type in the database : varray « PL SQL « Oracle PL / SQL






Constructs a two varrays and one nested table type in the database

   
SQL>
SQL> SET ECHO ON
SQL> SET SERVEROUTPUT ON SIZE 1000000
SQL>
SQL> 
SQL> CREATE OR REPLACE TYPE unitType
  2    AS VARRAY(13) OF VARCHAR2(5 CHAR);
  3  /

Type created.

SQL>
SQL> 
SQL> CREATE OR REPLACE TYPE categoryType
  2    AS VARRAY(4) OF VARCHAR2(8 CHAR);
  3  /

Type created.

SQL>
SQL> 
SQL> CREATE OR REPLACE TYPE charArrayType
  2    AS TABLE OF VARCHAR2(17 CHAR);
  3  /

Type created.

SQL>
SQL> DECLARE
  2
  3    counter INTEGER := 0;
  4
  5    
  6    suits categoryType :=categoryType('A','B','C','D');
  7
  8    
  9    units unitType :=unitType('Ace','Two','Three','Four','Five','Six','Seven');
 10
 11    
 12    charArray charArrayType := charArrayType();
 13
 14  BEGIN
 15    FOR i IN 1..suits.COUNT LOOP
 16      FOR j IN 1..units.COUNT LOOP
 17
 18        counter := counter + 1;
 19        charArray.EXTEND;
 20
 21        
 22        charArray(counter) := units(j)||' of '||suits(i);
 23
 24      END LOOP;
 25
 26    END LOOP;
 27
 28    FOR i IN 1..counter LOOP
 29      dbms_output.put_line('['||charArray(i)||']');
 30    END LOOP;
 31
 32  END;
 33  /
[Ace of A]
[Two of A]
[Three of A]
[Four of A]
[Five of A]
[Six of A]
[Seven of A]
[Ace of B]
[Two of B]
[Three of B]
[Four of B]
[Five of B]
[Six of B]
[Seven of B]
[Ace of C]
[Two of C]
[Three of C]
[Four of C]
[Five of C]
[Six of C]
[Seven of C]
[Ace of D]
[Two of D]
[Three of D]
[Four of D]
[Five of D]
[Six of D]
[Seven of D]

PL/SQL procedure successfully completed.

SQL>

   
    
    
  








Related examples in the same category

1.Varray constructors.
2.legal and illegal varray assignments.
3.TYPE Strings IS VARRAY(5) OF VARCHAR2(10)
4.Create a varray based on user defined type
5.Store pre-defined constants in VARRAY
6.Creating and Using VARRAYs
7.Query a stored varray.
8.VARRAY of VARCHAR2 and Varray of number
9.Table of numbers and varray of numbers
10.Initialize the array and create two entries using the constructor
11.Reference elements in varray
12.assignments to varray elements, and the ORA-6532 and ORA-6533 errors.
13.ORA-06533: Subscript beyond count
14.Compare two varray variables
15.Control varray index with if statement
16.Create type prices with a varray of number
17.Declare the varray with null values.
18.Declaring a VARRAY of scalar variable
19.Define a varray of integer with 3 rows
20.Define a varray of twelve strings.
21.Define a varray with a null element constructor and extends it one element at a time by a formula
22.Define a varray with a null element constructor and extends it one element at a time.
23.Define a varray with a three element constructor of null elements and attempt to populate it beyond three elements.
24.Define a varray with a three element constructor of null elements.
25.Hard code value in varray and use for loop to insert them to a table
26.Nested varray
27.Reference varray.count in for loop
28.Store 12 months in varray of string
29.Use table() function to display varray type column
30.exceeded maximum VARRAY limit
31.Assign values to subscripted members of the varray.
32.Check the size of a varray
33.Declare an array initialized as a no-element collection.
34.Extend with null element to the maximum limit size.
35.Initialization and assignment with a numeric index value to an associative array.
36.Initialization and assignment with a unique string index value to an associative array.
37.Associative array example
38.Assigns a value to the indexed value.
39.Avoid traversing an associative array where no elements are initialized.
40.Subscript index values begin at 1, not 0