BLOB Data Type
Last updated
Last updated
The
BLOB
data type stores unstructured binary large objects.BLOB
objects can be thought of as bitstreams with no character set semantics. ().
BLOB Data Type is not supported in Snowflake. BINARY is used instead.
This example is not a translation of SnowConvert, it is only used to show the functional equivalence between Oracle BLOB
and Snowflake BINARY
We are using "utl_raw.cast_to_raw
" and "DBMS_LOB.SUBSTR
" functions. The conversion for these functions is currently not supported by SnowConvert.
Initializing a column using EMPTY_BLOB()
will return an empty LOB locator. While after translation the column will return a string with ' '.
Since LOB data types are not supported in Snowflake there is no equivalent for the DBMS_LOB
functions and there are no implemented workarounds yet.
An column's maximum size is (4 gigabytes - 1) * (database block size), but is limited to 8MB.
: Built In Package Not Supported.