What is Blob and Which type of data stored in blob?
Loading
What is Blob and Which type of data stored in blob?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Uttam ChaturvediPosted Dec 27, 2023, 8:37 AM
Storing and retrieving large amounts of unstructured data, such as text or binary data. It is part of the Azure Storage service, which also includes services like Azure Table Storage, Azure Queue Storage, and Azure File Storage.
I would say refer to MS docs for complete details and try it out ceating one.
https://learn.microsoft.com/en-us/azure/storage/blobs/storage-quickstart-blobs-dotnet?tabs=visual-studio%2Cmanaged-identity%2Croles-azure-portal%2Csign-in-azure-cli%2Cidentity-visual-studio
Anandu G NathPosted Dec 27, 2023, 8:23 AM
@Rajeev Kumar
A Blob (Binary Large Object) is a collection of binary data stored as a single entity in a database or within a file system. Blobs are typically used to store large amounts of unstructured data, such as images, videos, audio files, documents (e.g., PDFs, Word documents,Images), and other multimedia formats.
Sam HobbsPosted Jul 2, 2023, 4:53 AM
I asked ChatGPT What is Blob and Which type of data stored in blob and the response from it was:
Sachin SinghPosted Jul 1, 2023, 2:09 PM
see, you can think of blob as any large single block of data such as a picture or sound file in binary format etc. I know you are confused with azure blob storage.
As the name suggests, azure blob storage is nothing but a space to store large unstructured data like files or any other binary data, which we call as blob and the path of that storage file you can store in a database like in a normal varchar column.
Mohamed Azarudeen ZPosted Jul 1, 2023, 7:53 AM
In the context of computer science and databases, a Blob (Binary Large Object) is a data type used to store large binary data, such as images, audio or video files, documents (e.g., PDFs), or any other type of binary data. It is typically used when you need to store and retrieve unstructured data that cannot be easily represented in traditional relational database fields.
Blobs are designed to handle data that is too large to be stored in standard database fields, such as strings or integers. They are useful for situations where you want to associate binary data with a record in a database. For example, in a file-sharing application, you might store the actual files (images, documents, etc.) in a Blob field associated with each user's record.
The size of Blobs can vary depending on the database management system being used. Some databases may support Blobs with sizes in the megabytes or gigabytes range. There are also variations of Blob data types, such as "Text Blob" or "Image Blob," that provide specialized features or optimizations for certain data types.
When you need to work with binary data in a database, such as storing multimedia content or other large files, using Blobs is a common and efficient approach. However, it's essential to consider the storage requirements, retrieval performance, and overall design implications when using Blob data types in your database schema.