ANYTYPE
Description
This type can contain a type description of any named SQL type or unnamed transient type. (Oracle SQL Language Reference ANYTYPE Data Type).
The ANYTYPE data type is not supported in Snowflake.
{ SYS.ANYTYPE | ANYTYPE }Sample Source Patterns
Create Table with ANYTYPE
Oracle
CREATE TABLE anytypetable
(
col1 NUMBER,
col2 ANYTYPE,
col3 SYS.ANYTYPE
);Snowflake
Inserting data into ANYTYPE column
Oracle
Snowflake
Known Issues
1. No access to the ANYTYPE built-in package
Most operations with ANYDATA columns require to use the ANYTYPE built-in package, transformation for Oracle built-in packages is not supported by SnowConvert yet.
Related EWIs
SSC-EWI-0056: Create Type Not Supported.
SSC-EWI-0073: Pending Functional Equivalence Review.
SSC-EWI-0028: Type not supported in Snowflake.
SSC-FDM-0006: Number type column may not behave similarly in Snowflake.
Last updated
