← Back to articles

How to Extract BLOB/CLOB Data from Oracle Dump Files

Published: April 4, 2026
oracleblobcloblobexport

In Oracle databases, binary data like images, PDFs, and documents are stored as BLOB (Binary Large Object), while long text data is stored as CLOB (Character Large Object).

Extracting this LOB data from .dmp files was traditionally difficult, but OraDB DUMP Viewer makes it easy — no Oracle environment needed.

What is LOB Data?

TypeFull NameUse CasesMax Size
BLOBBinary Large ObjectImages, PDFs, videos, ZIP files4GB
CLOBCharacter Large ObjectLong text, XML, JSON, HTML4GB

Previewing LOB Data

In OraDB DUMP Viewer's data preview, LOB columns show their content:

  • CLOB: Text content displayed directly
  • BLOB: Data size shown, with thumbnail preview for images

Extracting LOB Data as Files

Single Table LOB Extraction

  1. Select a table containing LOB columns
  2. Choose the LOB Extract feature
  3. Specify an output folder
  4. Run — individual files are created for each row

Files are named automatically: TableName_RowNumber_ColumnName.extension

Example Output

output/
├── DOCUMENTS_1_FILE_DATA.pdf
├── DOCUMENTS_2_FILE_DATA.pdf
├── DOCUMENTS_3_FILE_DATA.docx
├── PHOTOS_1_IMAGE.jpg
├── PHOTOS_2_IMAGE.jpg
└── PHOTOS_3_IMAGE.png

Working with CLOB Data

CLOB data can be exported through multiple methods:

  • CSV export: CLOB content appears directly in CSV cells
  • SQL export: Text is embedded in INSERT statement values
  • LOB extraction: Saved as individual text files (.txt)

For XML or JSON stored in CLOBs, LOB extraction to individual files makes downstream processing easier.

Working with BLOB Data

BLOB data is best exported using the LOB extraction feature:

  • Image data (JPEG, PNG) can be used directly as image files
  • PDFs are immediately viewable
  • Archives (ZIP) can be extracted as-is

Common LOB Scenarios

ScenarioRecommended Approach
Recovering image filesLOB Extract → save as image files
Retrieving PDF documentsLOB Extract → save as PDF files
Migrating XML/JSON dataLOB Extract → individual files → import at destination
Analyzing CLOB textCSV Export → analyze in Excel or BI tools
Migrating BLOBs to another DBLOB Extract → files → INSERT via application

Summary

OraDB DUMP Viewer's LOB extraction feature lets you pull BLOB/CLOB data from .dmp files as individual files — no Oracle needed. Use it for recovering images and documents from legacy systems or in data migration projects.

→ Get your free license