LONG Data Type
LONGSample Source Patterns
Long in Create Table
Oracle
CREATE TABLE long_table
(
id NUMBER,
long_column LONG
);
INSERT INTO long_table VALUES (1, 'this is a text');Snowflake
Retrieving data from a Long column
Oracle
Snowflake
Known Issues
1. The max length of long (Oracle) and varchar (Snowflake) are different
2. Cast of Long column
Oracle
Related EWIs
Last updated
