Array Type Definition
This is a translation reference to convert the Array Variant of the Oracle Create Type Statements (UDT's) to Snowflake
Description
CREATE TYPE <type name>
AS { VARRAY | [VARYING] ARRAY } ( <size limit> ) OF <data type>Sample Source Patterns
Inserts for the array usage
Oracle
INSERT INTO customer_table_demo(customer_table_id, customer_data) VALUES
(1, phone_list_typ_demo('2000-0000', '4000-0000', '0000-0000'));
INSERT INTO customer_table_demo(customer_table_id, customer_data) VALUES
(1, phone_list_typ_demo('8000-2000', '0000-0000', '5000-0000'));Snowflake
Array Type usage
Oracle
Snowflake
Known Issues
1. Create Type creation options are not supported
2. Migrated code output is not functional
Related EWIs
Last updated