Check the size of a varray : varray « PL SQL « Oracle PL / SQL






Check the size of a varray

   

SQL>
SQL> CREATE OR REPLACE TYPE list IS TABLE OF NUMBER;
  2  /

Type created.

SQL>
SQL> CREATE OR REPLACE FUNCTION format_list(set_in LIST) RETURN VARCHAR2 IS
  2    returnValue VARCHAR2(2000);
  3  BEGIN
  4      FOR i IN set_in.FIRST..set_in.LAST LOOP
  5        IF i = set_in.FIRST THEN
  6          IF set_in.COUNT = 1 THEN
  7            returnValue := set_in(i);
  8          ELSE
  9            returnValue := ':'||set_in(i);
 10          END IF;
 11        ELSIF i <> set_in.LAST THEN
 12          returnValue := returnValue||', '||set_in(i);
 13        ELSE
 14          returnValue := returnValue||', '||set_in(i)||')';
 15        END IF;
 16      END LOOP;
 17    RETURN returnValue;
 18  END format_list;
 19  /

Function created.

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.Constructs a two varrays and one nested table type in the database
16.Control varray index with if statement
17.Create type prices with a varray of number
18.Declare the varray with null values.
19.Declaring a VARRAY of scalar variable
20.Define a varray of integer with 3 rows
21.Define a varray of twelve strings.
22.Define a varray with a null element constructor and extends it one element at a time by a formula
23.Define a varray with a null element constructor and extends it one element at a time.
24.Define a varray with a three element constructor of null elements and attempt to populate it beyond three elements.
25.Define a varray with a three element constructor of null elements.
26.Hard code value in varray and use for loop to insert them to a table
27.Nested varray
28.Reference varray.count in for loop
29.Store 12 months in varray of string
30.Use table() function to display varray type column
31.exceeded maximum VARRAY limit
32.Assign values to subscripted members of the 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