TYPE Strings IS VARRAY(5) OF VARCHAR2(10) : varray « PL SQL « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » PL SQL » varray 
TYPE Strings IS VARRAY(5) OF VARCHAR2(10)
    
SQL>
SQL> DECLARE
  2    TYPE Strings IS VARRAY(5OF VARCHAR2(10);
  3    v_List Strings := Strings('One', 'Two', 'Three', 'Four');
  4  BEGIN
  5    v_List(2:= 'TWO';
  6
  7    v_List.EXTEND;
  8    v_List(5:= 'Five';
  9
 10    v_list.EXTEND;
 11  END;
 12  /
DECLARE
*
ERROR at line 1:
ORA-06532: Subscript outside of limit
ORA-06512: at line 10


SQL>
SQL>

   
    
    
  
Related examples in the same category
1. Varray constructors.
2. legal and illegal varray assignments.
3. Create a varray based on user defined type
4. Store pre-defined constants in VARRAY
5. Creating and Using VARRAYs
6. Query a stored varray.
7. VARRAY of VARCHAR2 and Varray of number
8. Table of numbers and varray of numbers
9. Initialize the array and create two entries using the constructor
10. Reference elements in varray
11. assignments to varray elements, and the ORA-6532 and ORA-6533 errors.
12. ORA-06533: Subscript beyond count
13. Compare two varray variables
14. Constructs a two varrays and one nested table type in the database
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
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.