I'm just wondering if it is possible to reference azure blob storage data in a column of an Azure SQL table?
For example, let's say I have a table called "Users" in my Azure SQL database, one of the columns in this table is UserImage , and instead of creating UserImage as varbinary(MAX) and storing the image data directly in the table, I would like to save image data in the blob store, get a link to the blob data and save this link in the UserImage ( varchar ?) column in the database, and then somehow, when reading a row from the Users table, access the associated image data from the blob store, using the link to this data.
I ask this because blob storage is significantly cheaper than binary / blob data directly in SQL Azure.
source share