Nested Table Type Definition
This is a translation reference to convert the Nested Table Variant of the Oracle Create Type Statements (UDT's) to Snowflake
Description
CREATE TYPE <type name> AS TABLE OF <data type>Sample Source Patterns
Nested Table Type usage
Oracle
CREATE TYPE textdoc_typ AS OBJECT (
document_typ VARCHAR2(32),
formatted_doc BLOB
);
/
CREATE TYPE textdoc_tab AS TABLE OF textdoc_typ;
/Snowflake
Snowflake
Known Issues
1. Create Type creation options are not supported
Related EWIs
Last updated