- array_type_name
- The name of the multidimensional VARRAY type to be created.
- SYSUDTLIB
- The optional name of the containing database for array_type name.
- VARRAY
- VARYING ARRAY
- The multidimensional VARRAY type is to be created using Oracle-compatible syntax.
- data type
- The data type on which the multidimensional ARRAY type is based.
- DEFAULT NULL
- Initialize all of the elements of array_type_name to null when the type is created.
Dimensions
You must specify a minimum of 2 dimensions for a multidimensional VARRAY type. The maximum number of dimensions you can specify is 5.
A multidimensional VARRAY can have a maximum size of 64,256 bytes. The auto-generated transform string for the VARRAY can have a maximum size of 64,256 bytes. The size of an auto-generated transform string for the VARRAY is limited to the maximum size of a DBS VARCHAR type. The overall limit on the number of elements is dependent on the size of the elements and the size of the transform. For details on how the size of the transform is calculated, see “Transform Input/Output Strings for ARRAY/VARRAY UDTs” in SQL Data Types and Literals.
- lower_bound
- Signed INTEGER number that defines the lower bound for a multidimensional VARRAY type dimension. The lower boundary can be a negative number and must be less than or equal to upper_bound.
- upper_bound
- Signed INTEGER number that defines the upper bound for a multidimensional VARRAY type dimension. The upper boundary can be a negative number and must be greater than or equal to lower_bound.
- maximum_size
- Maximum size of a type created as a multidimensional VARRAY. The current dimension of the multidimensional VARRAY can have a maximum size 64,256 bytes.