vote up 1 vote down star

I need to determine file type (i.e., MimeType) of stored data in the SQL Server 2008.

Is there anyway, if possible using SQL query, to identify the content type or MimeType of the binary data stored in the image column?

flag

75% accept rate

2 Answers

vote up 6 vote down check

I think that, if you need that information, it would probably be better to store it in a separate column. Once it's in the DB, your only options really are guessing it from the file name (if you happen to store that) or by detecting the signature from the first few bytes of data.

link|flag
vote up 4 vote down

There is no direct way in SQL Server to do that - there's no metadata on binary columns stored inside SQL Server, unless you've done it yourself.

For SQL Server, a blob is a blob is a blob - it's just a bunch of bytes, and SQL Server knows nothing about it, really. You need to have that information available from other sources, e.g. by storing a file name, file extension, mime type or something else in a separate column.

Marc

link|flag
1  
Exactly. Plus, mime type only comes from the file extension - which doesn't necessarily match the actual data. – OMG Ponies Oct 21 at 18:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.