cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Extraction of binary objects (BLOB) like images and pdf from Oracle table

PratFirm
New Contributor II

Does Oracle Select Snap fetch the BLOB data from a table as actual document/image? I would like to fetch those docs from database and store them in FTP location. Here, Iโ€™m looking for specific example of pipeline. Iโ€™ve not seen any special mention on handling binary data and extraction of physical documents/images in the SnapLogic documentation. Your inputs would be helpful! - Thank you.

2 REPLIES 2

igormicev
Contributor

Hi @PratFirm,
Not only Oracle, but the other databases like MySQL,PostgreSQL, SQL Server, etc. support querying of binary data (i.e. BLOB). Youโ€™d have the data read as Base64 encoded, like in the screenshot:

image

Attached is a pipeline that reads BLOB from MySQL table and saves the image as jpeg file on SLDB. Similarly, youโ€™ll read the blobs from Oracle and save them to FTP

/Igor

Blob_columns_write_to_sldb_2020_10_07.slp (5.4 KB)

PratFirm
New Contributor II

Thank you igormicev. Appreciate your detail response.