BFILE Data Type
Last updated
Last updated
Contains a locator to a large binary file stored outside the database. Enables byte stream I/O access to external LOBs residing on the database server. A
BFILE
column or attribute stores aBFILE
locator, which serves as a pointer to a binary file on the server file system. The locator maintains the directory name and the filename. ().
BFILE Data Type is not supported in Snowflake. VARCHAR is used instead.
Oracle BFILE
columns are used to store a locator with the directory and filename. They are changed to Snowflake VARCHAR
in order to store the directory and filename into the column. However, loading the content of the file must be done manually.
UDF added to replace BFILENAME()
.
UDF Added
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.
: Additional work is needed for BFILE column usage. BUILD_STAGE_URL function is a recommended workaround.