118
votes
52answers
6k 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 …
9
votes
8answers
2k 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 …
8
votes
3answers
775 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 …
5
votes
8answers
266 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
6answers
1k 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 …
4
votes
2answers
540 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 …
4
votes
3answers
1k 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.
…
4
votes
14answers
880 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 …
4
votes
2answers
516 views
Streaming and Linq Blobs
I have an object I am using to store document meta data into a table. The body text of the document can be very large, sometimes > 2GB so I will be storing it into a nvarchar(max) field in SQL 2008. …
3
votes
3answers
208 views
How to insert a blob into a database using sql server management studio
Hi,
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 …
3
votes
6answers
194 views
Detecting File Compression
I have to read some data stored by a third party application in an Acess 2000 database. The vendor is no longer around to ask questions.
One table contains image data that appears to be compressed - …
3
votes
6answers
149 views
Image data in database - good idea or bad? [closed]
Possible Duplicate:
Storing Images in DB - Yea or Nay?
Duplicate: User Images: Database or filesystem storage?
Duplicate: Storing images in database: Yea or nay?
Duplicate: Should I …
3
votes
9answers
290 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: …
3
votes
1answer
116 views
What is org.springframework.orm.hibernate3.support.BlobByteArrayType good for?
What is org.springframework.orm.hibernate3.support.BlobByteArrayType good for?Why not map a byte[] as the Hibernate basic type "binary"?
What are the differences? When to use which?
Thanks!
3
votes
3answers
288 views
storing binary data in mysql
I have a PDF file on a local machine. I want to upload this file into a BINARY BLOB on a SQL database. Other approaches mentioned here [http://stackoverflow.com/questions/17/binary-data-in-mysql] all …
