Tagged Questions
A BLOB is a collection of binary data stored as a single entity in a database management system.
374
votes
56answers
32k views
Storing Images in DB - Yea or Nay?
So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB.
What do you think ...
19
votes
8answers
7k views
Storing Documents as Blobs in a Database - Any disadvantages?
The requirements for my document management system were:
Must be secure from theft by simple copying of directories, files etc.
Must be secure against traditional virus infection (infection of ...
18
votes
3answers
3k views
How to store images in your filesystem
Currently, I've got images (max. 6MB) stored as BLOB in a InnoDB table.
As the size of the data is growing, the nightly backup is growing slower and slower hindering normal performance.
So, the ...
14
votes
3answers
5k views
proper hibernate annotation for byte[]
I have an application using hibernate 3.1 and JPA annotations. It has a few objects with byte[] attributes (1k - 200k in size). It uses the JPA @Lob annotation, and hibernate 3.1 can read these just ...
12
votes
5answers
11k views
Overcomplicated oracle jdbc BLOB handling
When I search the web for inserting BLOBs into Oracle database with jdbc thin driver, most of the webpages suggest a 3-step approach:
insert empty_blob() value.
select the row with for update.
...
10
votes
14answers
2k views
To Do or Not to Do: Store Images in a Database
In the context of a web application, my old boss always said put a reference to an image in the database, not the image itself. I tend to agree that storing an url vs. the image itself in the DB is a ...
10
votes
5answers
7k views
Rails Binary Stream support
I'm going to be starting a project soon that requires support for large-ish binary files. I'd like to use Ruby on Rails for the webapp, but I'm concerned with the BLOB support. In my experience with ...
9
votes
1answer
10k views
Text Field using Hibernate Annotation
I am having trouble setting the type of a String, it goes like
public void setTextDesc(String textDesc) {
this.textDesc = textDesc;
}
@Column(name="DESC")
@Lob
public String getTextDesc() {
return ...
9
votes
2answers
6k views
Help me understand the difference between CLOBs and BLOBs in Oracle
This is mainly just a "check my understanding" type of question. Here's my understanding of CLOBs and BLOBs as they work in Oracle:
CLOBs are for text like XML, JSON, etc. You should not assume ...
8
votes
1answer
465 views
how to get mysql command line client not to print blob fields in select *
Exploring some tables which have blob fields. How could I do a select * with the command line client and have it surpress the printing (or truncate to a standard field width) the blob fields rather ...
8
votes
5answers
4k views
Checking if a blob exists in Azure Storage
I've got a very simple question (I hope!) - I just want to find out if a blob (with a name I've defined) exists in a particular container. I'll be downloading it if it does exist, and if it doesn't ...
7
votes
1answer
263 views
ArrayBuffer vs Blob and XHR2
XHR2 differences states
The ability to transfer ArrayBuffer, Blob, File and FormData objects.
What are the differences between ArrayBuffer and Blob ?
Why should I care about being able to send ...
7
votes
2answers
241 views
Data Warehousing arbitrary fields
In our application, we support user-written plugins.
Those plugins generate data of various types (int, float, str, or datetime), and those data are labeled with bunches of meta-data (user, current ...
7
votes
5answers
2k views
BLOB vs. VARCHAR for storing arrays in a MySQL table
I've got a design decision to make and am looking for some best practice advice. I have a java program which needs to store a large number (few hundred a day) of floating point arrays in a MySQL ...
7
votes
4answers
9k views
How to insert a blob into a database using sql server management studio
How can I easily insert a blob into a varbinary(MAX) field?
for argument sake:
assume the thing I want to insert is: c:\picture.png
the table is mytable
the column is mypictureblob
and the place is ...
7
votes
2answers
11k views
How do i store and retrieve a blob from sqlite
I have used sqlite in c++, python and now (perhaps) in C#. In all of these i have no idea how to insert a blob into a table. How do i store and retrieve a blob in sqlite?
6
votes
2answers
99 views
Virus Scanning of Binaries — Blobs vs. Files
There has been a lot of discussion on SO about using blobs vs. files to store binaries, but the current issue I'm facing involves virus scanning. There are likely a lot of APIs that can be used to ...
6
votes
1answer
865 views
Handling BLOBs in Entity Framework 4.0 in a stream-fashion
Is it possible to handle (read and write) binary data to SQL Server using Entity Framework 4.0 using streams? (i.e.: not the whole content shipped in a byte array)
An example could be taken from ...
6
votes
3answers
339 views
Strongly typed access to Amazon S3 using C#
I'm currently migrating a Windows Azure application to Amazon AWS. In Windows Azure we used Lokad.Clout to get strongly typed access to Azure Blob Storage. For instance like this:
foreach(var name ...
6
votes
5answers
296 views
Best strategy for storing documents in SQL Server 2008
One of our teams is going to be developing an application to store records in a SQL2008 database and each of these records will have an associated PDF file. There is currently about 340GB of files, ...
6
votes
2answers
656 views
How to reliably restore MySQL blobs
I have been backing up a MySQL database for several years with the command:
mysqldump myDatabaseName -u root > myBackupFile.sql
The backups have appeared to work fine...
I then wanted to restore ...
6
votes
2answers
1k views
How do I store a picture in MySQL?
I want to store an image in a MySQL database. I have created a table with a BLOB datatype, but now how do I store the image in this table?
6
votes
2answers
769 views
Storing very large integers in MySQL
I need to store a very large number (tens of millions) of 512-bit SHA-2 hashes in a MySQL table. To save space, I'd like to store them in binary form, rather than a string a hex digits. I'm using an ...
5
votes
2answers
115 views
BLOB's in SQL that stores a Video file
I am hoping someone can explain how to use BLOBs. I see that BLOBs can be used to store video files. My question is why would a person store a video file in a BLOB in a SQL database? What are the ...
5
votes
3answers
312 views
Detecting mime-type of a MySQL BLOB in Java
Yes I know that we shouldn't store images on a database, thanks.
That said, is there a way to detect in java the mime type of a BLOB stored in mysql?
It is only for images (.gif, .png, .jpeg, etc.) ...
5
votes
2answers
584 views
How to store a Word document as a BLOB in mySQL with Coldfusion
A client wants Word documents saved to a mySQL database despite me arguing against. The documents themselves should not be particularly large, no more than 1 MB each. I have enabled BLOB in CF ...
5
votes
1answer
1k views
MySQL Binary Storage using BLOB VS OS File System: large files, large quantities, large problems
Versions I am running (basically
latest of everything):
PHP: 5.3.1
MySQL: 5.1.41
Apache: 2.2.14
OS: CentOS (latest)
Here is the situation.
I have thousands of very important documents, ranging ...
5
votes
3answers
2k views
Blob extraction in OpenCV
I'm using OpenCV to filter an image for certain colours, so I've got a binary image of the detected regions.
Now I want to erode those areas and then get rid of the smaller ones, and find the x,y ...
5
votes
2answers
2k views
Storing images in CORE data
I have set of data which contains images also. I want to cache this data. Should i store them on file system or on core data and why?
5
votes
5answers
813 views
How do I avoid a full table scan with this basic inner join?
I have a table that has a foreign key to a table that stores some blob data. When I do an inner join on the tables with a condition on the main table the join type goes from 'index' to 'ALL'. I would ...
5
votes
9answers
1k views
Saving images: files or blobs?
When you save your images (supose you have lots of them) do you store then as blobs in your Database, or as files? Why?
Duplicate of: ...
5
votes
5answers
938 views
Storing images on a database
For ages I've been told not to store images on the database, or any big BLOB for that matter. While I can understand why the databases aren't/weren't efficient for that I never understood why they ...
5
votes
7answers
1k views
How can I identify a file type from a blob/filestream?
We bought an "off the shelf" application a lonnng time ago that is capable of storing files as a blob within SQL Server. We've noticed that the database has more than doubled in size within the past ...
5
votes
3answers
11k views
How do I get textual contents from BLOB in Oracle SQL
I am trying to see from an SQL console what is inside an Oracle BLOB.
I know it contains a somewhat large body of text and I want to just see the text, but the following query only indicates that ...
5
votes
2answers
6k views
How do you insert a file (PDF) into a varbinary SQL Server column and later retrieve it?
I'm looking to take the results of a report run (a PDF file from Crystal Reports), serialize it, stick it into a varbinary field, and then later be able to deserialize it and present it back to the ...
4
votes
1answer
134 views
Why does Git use the SHA1 of the *compressed* objects rather than the SHA1 of the original objects?
I'm just curious as to why this choice was made - it basically rules out changing the compression algorithm used by Git - because it doesn't use the SHA1 of the raw blobs. Perhaps there is some ...
4
votes
6answers
179 views
Store image files or URLs in MySQL database? Which is better? [closed]
Possible Duplicate:
Storing Images in DB - Yea or Nay?
Images in database vs file system
I've been developing a web application using RIA technologies (Flex + PHP + MySQL + Ajax) and now ...
4
votes
3answers
560 views
Play Framework Image BLOB File for Test Object Yaml
How do you set up a Test Blob Image using the yaml structure?
Also, what is the database structure for a BLOB file? (MySQL)
4
votes
3answers
531 views
php:Store image into Mysql blob, Good or bad?
this question is confusing me so i thought i should listen to an expert voice !.
is it better to upload images to a folder and just save link to mysql, or better upload img itself into a blob mysql ...
4
votes
1answer
792 views
BLOB in MySQL with DataSet in C#
I would like to insert a PDF file in a MySQL database, in a blob.
Here is the code I'm using to insert (I use a WebService and a DataSet):
FileStream fs = new FileStream(fileName, ...
4
votes
3answers
741 views
Cursor size limit in Android SQLiteDatabase
I download a db from internet. I save it in my datases folder and I open it.
Inside the db there is a table "Ads" with 6 fields. 2 of these fields are BLOB. When I want to read from this table... I ...
4
votes
1answer
855 views
Trying to read a blob
I am trying to read a BLOB from an Oracle database. The function GetFileContent take p_file_id as a paramater and return a BLOB. The BLOB is a DOCX-file that needs to be written in a folder somewhere. ...
4
votes
2answers
469 views
GAE: How to get the blob-image height
Given is the follwing model on GAE:
avatar = db.BlobProperty()
By calling the image instance properties height or width (see documentation) with:
height = profile.avatar.height
the following ...
4
votes
1answer
901 views
Conditions (like “like”) on binary field (blob) in oracle
How can I search in (put condition on) blob field in oracle, like text fields?
I need someting like:
select * from table_name where blob_field like '%00ff00ff%'
Oracle throws some error on it.
4
votes
3answers
557 views
view a docx file in C# .NET
I need to create C# .NET solution to view a .docx file directly from the database without writing on the hard disk. What would be the most feasible approach ?
One option would be to convert the docx ...
4
votes
1answer
3k views
JPA, Mysql Blob returns data too long
I've got some byte[] fields in my entities, e.g.:
@Entity
public class ServicePicture implements Serializable {
private static final long serialVersionUID = 2877629751219730559L;
// seam-gen ...
4
votes
4answers
2k views
Oracle Blob as img src in PHP page
I have a site that currently uses images on a file server. The images appear on a page where the user can drag and drop each as is needed. This is done with jQuery and the images are enclosed in a ...
4
votes
6answers
2k views
How to store unlimited characters in Oracle 11g?
We have a table in Oracle 11g with a varchar2 column. We use a proprietary programming language where this column is defined as string. Maximum we can store 2000 characters (4000 bytes) in this ...
4
votes
3answers
145 views
Why Does Piping Binary Text to the Screen often Horck a Terminal
Imaginary Situation: You’ve used mysqldump to create a backup of a mysql database. This database has columns that are blobs. That means your “text” dump files contains both strings and binary data ...
4
votes
2answers
2k views
insert a BLOB via a sql script?
I have an H2 database (http://www.h2database.com) and I'd like to insert a file into a BLOB field via a plain simple sql script (to populate a test database for instance). I know how to do that via ...