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
CREATE OR REPLACE TABLE anytypetable
(
col1 NUMBER(38, 18) /*** SSC-FDM-0006 - NUMBER TYPE COLUMN MAY NOT BEHAVE SIMILARLY IN SNOWFLAKE. ***/,
--** SSC-FDM-0026 - TYPE NOT SUPPORTED BY SNOWFLAKE **
col2 ANYTYPE,
--** SSC-FDM-0026 - TYPE NOT SUPPORTED BY SNOWFLAKE **
col3 SYS.ANYTYPE
)
COMMENT = '{"origin":"sf_sc","name":"snowconvert","version":{"major":1, "minor":0},{"attributes":{"component":"oracle"}}'
;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-FDM-0006: Number type column may not behave similarly in Snowflake.
SSC-EWI-0056: Create Type Not Supported.
SSC-EWI-0073: Pending Functional Equivalence Review.
SSC-EWI-0028: Type not supported
Last updated