I was just wondering if it is possible to reference azure blob storage data in a SQL Azure table column?
For example, say I have a table called Users in my SQL Azure database, one of the columns in that table is UserImage
, and instead of creating UserImage
as a varbinary(MAX)
and storing the image data directly in the table, I would instead like to store the image data in blob storage, get a reference to the blob data and store that reference in the UserImage
(varchar
??) column in the database, and then somehow, when reading the rows from the Users table, access the associated image data from blob storage using the reference to that data.
I am asking this because blob storage is considerably cheaper to use than binary/blob data directly within SQL Azure.