BLOB

Stands for "Binary Large Object."

A BLOB is a database data type that can store large chunks of binary data. Databases that support BLOBs use them to store entire distinct files within the database. Since they store binary data directly, BLOBs are unlike most other database data types that can only store data as plain text, boolean values, or numbers.

BLOBs allow a database to attach binary data directly to a database record. For example, a database of a website's users may use the BLOB data type to store each user's uploaded profile image. While the most common use of BLOBs is to store media files, they may contain any file type — a BLOB might consist of a PDF document, a ZIP archive, or even an executable file. However, since they consist of unstructured binary data and not text, database software cannot search their contents; instead, a database can include additional fields containing searchable metadata for the BLOB.

Storing files as BLOBs in a database also significantly increases the size of the database. Binary BLOBs require much more storage space than plain text and numbers, and storing large BLOBs can slow down database queries. Instead of storing BLOBs in a database directly, many administrators set aside separate cloud storage for media files and insert links to those files into database records. This makes sharing, updating, and editing files easier (since the changes do not need to go through the database) but adds complexity by requiring separate backups and permissions management.

NOTE: Some types of database include multiple BLOB data types to help manage storage space. For example, MySQL supports four types — TINYBLOB for files under 255 bytes, BLOB for files up to 64 kilobytes, MEDIUMBLOB for files up to 16 megabytes, and LONGBLOB for files up to 4 gigabytes.

Updated August 14, 2023 by Brian P.

quizTest Your Knowledge

What is the process of trimming extra spaces and line breaks out of source code called?

A
Minification
0%
B
Deprecation
0%
C
Compression
0%
D
Deflation
0%
Correct! Incorrect!     View the Minification definition.
More Quizzes →

The Tech Terms Computer Dictionary

The definition of BLOB on this page is an original definition written by the TechTerms.com team. If you would like to reference this page or cite this definition, please use the green citation links above.

The goal of TechTerms.com is to explain computer terminology in a way that is easy to understand. We strive for simplicity and accuracy with every definition we publish. If you have feedback about this definition or would like to suggest a new technical term, please contact us.

Sign up for the free TechTerms Newsletter

How often would you like to receive an email?

You can unsubscribe or change your frequency setting at any time using the links available in each email.

Questions? Please contact us.